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

IT技术 javascript jquery dom cookies
2021-01-05 16:19:52

如何使用 jQuery 设置和取消设置 cookie,例如创建一个名为 cookie 并将test值设置为1

6个回答

2019 年 4 月更新

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 上的文档。


2019年4月之前(旧)

查看插件:

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");

更新(2015 年 4 月):

正如下面的评论中所述,开发原始插件的团队已经删除了新项目 ( https://github.com/js-cookie/js-cookie ) 中的 jQuery 依赖项,该项目具有与以下相同的功能和通用语法jQuery 版本。显然,原始插件不会随处可见。

现在是 2015 年,我们仍然每周在 jquery-cookie 存储库中收到超过 2k 的唯一点击量,仅来自这个答案。我们可以从中学到一些东西:1. cookie 不会很快消亡 2. 人们仍然在谷歌上搜索“拯救世界的 jquery 插件”。处理 cookie 不需要 jQuery,jquery-cookie 被重命名为 js-cookie ( github.com/js-cookie/js-cookie ) 并且 jquery 依赖在 1.5.0 版本中成为可选的。2.0.0 版本会有很多有趣的东西,值得一看并贡献,谢谢!
2021-02-08 16:19:52
来自变更日志:“$.removeCookie('foo') 用于删除 cookie,现在不推荐使用 $.cookie('foo', null)”
2021-02-17 16:19:52
删除cookie时,请确保还将路径设置为与最初设置cookie相同的路径: $.removeCookie('nameofcookie', { path: '/' });
2021-02-24 16:19:52
@Kazar 我们不打算物理移动它,该 URL 有大量来自多个来源的总体流量,而 Klaus 是“jquery-cookie”命名空间的历史所有者。无需担心该 URL 很快就会消失。但是,我仍然鼓励每个人开始观看新存储库的更新。
2021-02-24 16:19:52
@Kazar 我花了 6 个小时,没有休息。今天早上我终于意识到了这个问题。我将它与 phonegap 一起使用,在网站上它没有问题,但是在设备上,当您尝试检索具有 JSON 的 cookie 时,它​​已经是一个对象,因此如果您尝试 JSON.parse 它,它将给出 JSON 解析错误。用“if typeof x == 'string'”解决它,做 JSON.parse,否则,只使用对象。该死的 6 个小时在所有错误的地方寻找错误
2021-03-02 16:19:52

不需要特别使用 jQuery 来操作 cookie。

来自QuirksMode(包括转义字符)

function createCookie(name, value, days) {
    var expires;

    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
        expires = "; expires=" + date.toGMTString();
    } else {
        expires = "";
    }
    document.cookie = encodeURIComponent(name) + "=" + encodeURIComponent(value) + expires + "; path=/";
}

function readCookie(name) {
    var nameEQ = encodeURIComponent(name) + "=";
    var ca = document.cookie.split(';');
    for (var i = 0; i < ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) === ' ')
            c = c.substring(1, c.length);
        if (c.indexOf(nameEQ) === 0)
            return decodeURIComponent(c.substring(nameEQ.length, c.length));
    }
    return null;
}

function eraseCookie(name) {
    createCookie(name, "", -1);
}

看一眼

嗨,Russ,jquery cookie 的好处在于它可以转义数据
2021-02-09 16:19:52
@lordspace - 只需将值包装在 window.escape/unescape 中即可分别写入/检索 cookie 值:)
2021-02-24 16:19:52
您可以使用 encodeURI 或 decodeURI 而不是 escape 或 unescape
2021-02-28 16:19:52
更好的 cookie 代码可以在这里找到:developer.mozilla.org/en/DOM/document.cookie
2021-03-05 16:19:52
jQuery cookie 插件要简单得多
2021-03-08 16:19:52
<script type="text/javascript">
    function setCookie(key, value, expiry) {
        var expires = new Date();
        expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000));
        document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
    }

    function getCookie(key) {
        var keyValue = document.cookie.match('(^|;) ?' + key + '=([^;]*)(;|$)');
        return keyValue ? keyValue[2] : null;
    }

    function eraseCookie(key) {
        var keyValue = getCookie(key);
        setCookie(key, keyValue, '-1');
    }

</script>

您可以将 cookie 设置为

setCookie('test','1','1'); //(key,value,expiry in days)

你可以像这样获得饼干

getCookie('test');

最后你可以像这样擦除饼干

eraseCookie('test');

希望它会对某人有所帮助:)

编辑:

如果要将 cookie 设置为所有路径/页面/目录,则将路径属性设置为 cookie

function setCookie(key, value, expiry) {
        var expires = new Date();
        expires.setTime(expires.getTime() + (expiry * 24 * 60 * 60 * 1000));
        document.cookie = key + '=' + value + ';path=/' + ';expires=' + expires.toUTCString();
}

谢谢,维琪

好功能……但为什么它们在 document.ready 标签内?
2021-02-09 16:19:52
最好的最好的答案
2021-02-14 16:19:52
1 * 24 * 60 * 60 * 1000 定制 1 天 1 或你可以做 365
2021-03-04 16:19:52
60 * 1000 = 60 秒 60* (60 * 1000) = 60 分钟,即 1 小时 24* (60* (60 * 1000)) = 1 天,即 24 小时 希望有帮助。
2021-03-07 16:19:52
这不是要在Safari或者IE工作,为ASCII范围之外的任何字符,如é等。此外,这是不会工作未在cookie名称或cookie的值允许一些特殊字符。我推荐以下参考:tools.ietf.org/html/rfc6265
2021-03-07 16:19:52

您可以使用此处提供的插件..

https://plugins.jquery.com/cookie/

然后写一个cookie做 $.cookie("test", 1);

访问设置的cookie做 $.cookie("test");

该插件有更新版本
2021-02-15 16:19:52

这是我使用的全局module -

var Cookie = {   

   Create: function (name, value, days) {

       var expires = "";

        if (days) {
           var date = new Date();
           date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
           expires = "; expires=" + date.toGMTString();
       }

       document.cookie = name + "=" + value + expires + "; path=/";
   },

   Read: function (name) {

        var nameEQ = name + "=";
        var ca = document.cookie.split(";");

        for (var i = 0; i < ca.length; i++) {
            var c = ca[i];
            while (c.charAt(0) == " ") c = c.substring(1, c.length);
            if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
        }

        return null;
    },

    Erase: function (name) {

        Cookie.create(name, "", -1);
    }

};