ff & 中的 cookies 未被删除萤火虫
我觉得我错过了一些明显的东西......但是 firebug 会干扰 cookie 删除吗? 手动删除它们
>>>document.cookie
"noticecount=1; sessionid=adba186e765d007a93; "
>>>document.cookie='';
>>>document.cookie
"noticecount=1; sessionid=adba186e765d007a93; "
我已经尝试使用 jquery.cookie
>>> $.cookie('imgpath')
"cv.jpg"
>>> $.cookie('imgpath',null)
undefined
>>> $.cookie('imgpath')
"cv.jpg"
:另外,通过查看实时 http 标头,我可以看到更改的 cookie 不会在后续请求中发送。
I feel like I'm missing something obvious... but does firebug interfere with cookie deletion? I have deleted them manually
>>>document.cookie
"noticecount=1; sessionid=adba186e765d007a93; "
>>>document.cookie='';
>>>document.cookie
"noticecount=1; sessionid=adba186e765d007a93; "
tried using jquery.cookie:
>>> $.cookie('imgpath')
"cv.jpg"
>>> $.cookie('imgpath',null)
undefined
>>> $.cookie('imgpath')
"cv.jpg"
Also, from looking at live http headers, I can see that the changed cookies aren't sent in subsequent requests.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于
document.cookie
,如果你想删除
一个cookie,你不能只将document.cookie
分配给'',相反,您需要将 cookie 添加到
document.cookie
,但过期时间是过去的时间。for
document.cookie
, if you want todelete
a cookie, you can not just assigndocument.cookie
to''
, instead you need to add the cookie todocument.cookie
but with an expiration time which is in the past.