如何使用 jQuery 使 cookie 在下次访问时过期?

发布于 2024-11-08 11:37:23 字数 209 浏览 0 评论 0原文

如何在下次访问时使 Cookie 过期?我正在使用jquerycookie-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 技术交流群。

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

发布评论

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

评论(1

寒尘 2024-11-15 11:37:23

不要指定到期时间。这将使其成为会话 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.

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