如何通过javascript动态删除会话cookie,而无需手动重新启动浏览器?
我在某处读到会话 cookie 保留在浏览器内存中,并且会在浏览器关闭时被删除。
// sessionFooCookie is session cookie
// this code does not delete the cookie while the browser is still on
jQuery.cookie('sessionFooCookie', null);
谢谢。
更多信息:上面的代码片段是一个 javascript 代码片段,使用 jQuery 及其 jQuery.cookie 插件。