协慌网

登录 贡献 社区

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

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

答案

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


看插件:

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 是在与当前 cookie 不同的路径上创建的,您可能希望指定 path 参数:

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

更新(2015 年 4 月):

如下面的评论中所述,处理原始插件的团队已删除了新项目( https://github.com/js-cookie/js-cookie )中的 jQuery 依赖项,该项目具有与以下相同的功能和一般语法。 jQuery 版本。显然原始插件不会去任何地方。

没有必要特别使用 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);
}

看一眼

<script type="text/javascript">
        function setCookie(key, value) {
            var expires = new Date();
            expires.setTime(expires.getTime() + (1 * 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;
        }
</script>

您可以像设置 cookie 一样设置

setCookie('test','1');

你可以像这样获得 cookies

getCookie('test');

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

编辑:

如果你想单独为主页保存 cookie 的路径,那就这样做吧

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

谢谢,薇薇