您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

如何使用jQuery设置/取消设置Cookie?

如何使用jQuery设置/取消设置Cookie?

Cookie的读取/操作不需要jQuery,因此请不要使用下面的原始答案。

转到https://github.com/js-cookie/js-cookie,然后在其中使用不依赖jQuery的库。

基本示例:

// Set a cookie
Cookies.set('name', 'value');

// Read the cookie
Cookies.get('name') => // => 'value'

有关详细信息,请参见github上的文档。

参见插件

https://github.com/carhartl/jquery- cookie

然后,您可以执行以下操作:

$.cookie("test", 1);

删除

$.removeCookie("test");

此外,要在Cookie上设置特定天数(此处为10天)的超时时间:

$.cookie("test", 1, { expires : 10 });

如果省略expires选项,则cookie成为会话cookie,并在浏览器退出时被删除

涵盖所有选项:

$.cookie("test", 1, {
   expires : 10,           // Expires in 10 days

   path    : '/',          // The value of the path attribute of the cookie
                           // (Default: path of page that created the cookie).

   domain  : 'jquery.com', // The value of the domain attribute of the cookie
                           // (Default: domain of page that created the cookie).

   secure  : true          // If set to true the secure attribute of the cookie
                           // will be set and the cookie transmission will
                           // require a secure protocol (defaults to false).
});

读取cookie的值:

var cookieValue = $.cookie("test");

如果cookie是在与当前路径不同的路径上创建的,则可能希望指定path参数:

var cookieValue = $.cookie("test", { path: '/foo' });

如下面的评论所述,使用原始插件的团队已在新项目中删除了jQuery依赖项,该项目具有与相同的功能和通用语法jQuery版本。显然,原始插件并没有到任何地方。

JS 2022/1/1 18:13:41 有627人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶