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