ff & 中的 cookies 未被删除萤火虫

发布于 2024-10-28 09:16:53 字数 513 浏览 1 评论 0原文

我觉得我错过了一些明显的东西......但是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨离汐 2024-11-04 09:16:53

对于document.cookie,如果你想删除一个cookie,你不能只将document.cookie分配给'',相反,您需要将 cookie 添加到 document.cookie,但过期时间是过去的时间。

for document.cookie, if you want to delete a cookie, you can not just assign document.cookie to '', instead you need to add the cookie to document.cookie but with an expiration time which is in the past.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文