首页 > 代码库 > cookie路径问题
cookie路径问题
昨天在开发过程中用到cookie,在销毁该$.cookie(‘flag‘,null)时发现又新生成了一个同名的值为null但路径不相同的cookie
原来在设置cookie时没有给他设置路径所以该cookie默认为该页面的路径跟路径,即:
$.cookie("flag",data.count); 实际上是 $.cookie("flag",data.count,{path:"/"});
但是在获取页面代码/yourendai/WebRoot/index/head_top.html
var flag= $.cookie(‘flag‘);
if(flag&&flag>0){
$("#login_count").html(flag);
$("#login_show").show();
setTimeout("$(‘#login_show‘).hide();",3000);
$.cookie(‘flag‘,null);
}
该页面的cookie实际上是新建的 $.cookie(‘flag‘,null,{path:"/index"});路劲为 /index的无效cookie
所以生成了两个同名的cookie
cookie路径问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。