function delCookie(name)
{
var exp = new Date();
exp.setTime(exp.getTime() - 1);
var cval=getCookie(name);
if(cval!=null)
console.log(cval)
console.log(exp.toGMTString())
document.cookie= name + "=;" + "expires=" + exp.toGMTString() + ';path=/';
}
function getCookie(name)
{
var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
if(arr=document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
}
$('.login-out').on("click", function () {
admin.reqPost('/confined/account/logout', JSON.stringify({}), function (data) {
console.log(data);
if ("000"===data.code){
// 1:调用删除方法 有几个写几个
delCookie("your_cookie_name"); // 删除
delCookie("your_cookie_name"); // 删除
layer.msg('退出登录成功', function () {
window.location = 'login.html';
});
}else layer.msg('退出登录失败');
});
});
这里是通过 document.cookie= name + “=;” + “expires=” + exp.toGMTString() + ‘;path=/’; 把cookie的过期时间设置为现在,让cookie马上过去,这里主要要加上cookie的路径,不然会删除失败
版权声明:本文为Shuttengr原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。