如何使用 jQuery 使 cookie 在下次访问时过期?
如何在下次访问时使 Cookie
过期?我正在使用jquery
cookie-plugin
。我能够做这样的事情。
$.cookie("example", "foo", { expires: 1 });
这是 1 天的时间。但是我们如何设置下次访问的到期时间呢?
How to Expire a Cookie
on next visit ? I am using the jquery
cookie-plugin
. I am able to do something like this.
$.cookie("example", "foo", { expires: 1 });
This is for 1 day. But how can we set expiry time for the next visit ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要指定到期时间。这将使其成为会话 cookie,并且该 cookie 将在浏览器关闭时过期。
Don't specify an expiry time. This will make it a session cookie and the cookie will expire when the browser is closed.