php点击按钮删除session['history']中的数据;
session['history']是一个数组,现在想通过点击button清除session['history']没有表单就是单纯一个按钮,求助~~...
session['history']是一个数组,现在想通过点击button清除session['history']
没有表单就是单纯一个按钮,求助~~ 展开
没有表单就是单纯一个按钮,求助~~ 展开
3个回答
展开全部
使用ajax的方法 按钮点击后调用后台php的方法, 然后清除session的内容
给你个超简单的ajax调用框架, 不过javascript需要jquery支持
<?php
//ajax procedure
function clearSession()
{
$_SESSION['history'] = '';
return "Clear it!" ;
}
header("Content-type: text/html; charset=gb2312");
header("Cache-Control: no-cache");
//ajax dispatcher
if ($_GET['function'])
{
switch ($_GET['function'])
{
case "clear_session":
echo clear_session();
break;
}
die();
}
?>
<!DOCTYPE >
<html>
<head>
<script type="text/javascript" src="js/jquery.js">
var callbackClear = function () {
$.get(
"index_test.php", //指向自己
{
"function": "clear_session"
},
function (data) {
alert(data);
});
};
$("#clear").click(callbackClear);
</script>
</head>
<body>
<input type="button" id="clear" class="invoice_anniu" value="清除session" />
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询