jquery cookie,cookie保存在哪里?

发布于 2024-12-07 16:47:26 字数 556 浏览 0 评论 0原文

也许这是一个基本问题。但我仍然不确定jquery cookie,将cookie保存在哪里?

像这样:http://code.google.com/p/cookies/wiki/Documentation

cookie 保存在服务器部分还是自定义浏览器部分?

我想保存在自定义浏览器部分。 jquery cookie只是一个工具,它应该像php cookie/session一样,保存每个cookie取决于不同的URL

但是当我看到它需要设置 domainpath 时。我很困惑,如果依赖于不同的URL,为什么不使用domain + window.location.hashpath 的用途是什么?

Maybe this is a basic question. but I still not sure jquery cookie, save cookies in where?

like this one: http://code.google.com/p/cookies/wiki/Documentation

the cookies save in server part or in custom browser part?

I guess save in custom browser part. jquery cookie just is a tool, it should be like php cookie/session, save each cookie depends on different URL.

But when I see it need set domain and path. I am puzzed, if it depends on different URL, why not use domain + window.location.hash? the path for what?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱人如己 2024-12-14 16:47:27

“JQuery cookie”是一个利用document.cookie的简单工具。这个基本的 JavaScript 功能将 cookie 存储在用户的浏览器中。

可以使用一些属性来定义 cookie:

  • max-age - 过期日期(以秒为单位)(Jquery 实现:{expires: __} 以天为单位)
  • domain - 默认情况下,cookie 保存在当前域中。但是,可以将域更改为从当前子域到顶级域的任何域(sub.sub2.top.nl -> sub2.top.nl -> ;top.nl,但不是another.top.nl)。
  • path - 默认情况下,cookie 应用于 /。可以更改此默认值,以便仅匹配特定目录。
  • secure - 可以通过在 JQuery 中传递 secure: true 来添加此标志。设置此选项后,cookie 仅针对 HTTPS 协议。

"JQuery cookie" is a simple tool which makes use of document.cookie. This basic JavaScript feature stores cookies at the user's browser.

A cookie can be defined with some properties:

  • max-age - Expiration date in seconds (Jquery implementation: {expires: __} in days)
  • domain - By default, a cookie is saved at the current domain. It's however possible to change the domain to any domain from the current subdomain to the top domain (sub.sub2.top.nl -> sub2.top.nl -> top.nl, but not another.top.nl).
  • path - By default, the cookie is applied to /. It's possible to change this default, so that only a specific directory is matched.
  • secure - This flag can be added through passing secure: true in JQuery. When this option is set, cookies are targeted at the HTTPS protocol only.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文