gpt4 book ai didi

jquery - 如何删除 session Cookie?

转载 作者:IT王子 更新时间:2023-10-29 03:00:55 25 4
gpt4 key购买 nike

如何通过 jQuey 动态删除 session cookie,而无需手动重启浏览器?

我在某处读到, session cookie 保留在浏览器内存中,当浏览器关闭时将被删除。

// sessionFooCookie is session cookie
// this code does not delete the cookie while the browser is still on
jQuery.cookie('sessionFooCookie', null);

More Info: The code snippet above is ajavascript code snippet, using jQueryand its jQuery.cookie plugin.

最佳答案

session cookie 只是一个没有过期日期的普通 cookie。这些由浏览器处理,在窗口关闭或程序退出之前有效。

但如果 cookie 是 httpOnly cookie(设置了 httpOnly parameter 的 cookie),您不能从 HTTP 外部读取、更改或删除它(这意味着它必须在服务器上更改) ).

关于jquery - 如何删除 session Cookie?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1085756/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com