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


1243

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

Answers:


1767

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

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

更新(2015年4月):

如下面的评论所述,使用原始插件的团队已删除了新项目(https://github.com/js-cookie/js-cookie)中的jQuery依赖项,该项目具有与新项目相同的功能和通用语法jQuery版本。显然,原始插件没有任何用。


1
从变更日志中:“现在不建议使用$ .removeCookie('foo')使用$ .cookie('foo',null)删除cookie,”
bogdan

68
@Kazar我花了6个小时,没有休息。今天早上我终于意识到了问题。我在phonegap上使用它,在网站上它没有问题,但是在设备上,当您尝试检索具有JSON的cookie时,它已经是一个对象,因此,如果尝试JSON.parse,它将将给出JSON解析错误。用“ if typeof x =='string'”解决它,执行JSON.parse,否则,仅使用该对象。6个该死的小时,在所有错误的地方寻找错误
Andrei Cristian Prodan

10
删除Cookie时,请确保还将路径设置为与原始设置时相同的路径:$.removeCookie('nameofcookie', { path: '/' });
LessQuesar 2013年

30
到了2015年,仅此答案,我们每周仍然在jquery-cookie存储库中收到超过2k的唯一匹配。我们可以从中学习到以下几点:1. cookie不会很快消失,并且2.人们仍然在谷歌上寻找“ jquery插件来拯救世界”。jQuery对于处理cookie不是必需的,jquery-cookie被重命名为js-cookie(github.com/js-cookie/js-cookie),并且jquery依赖在1.5.0版中变为可选。将会有一个2.0.0版本,其中包含很多有趣的东西,值得一看并贡献力量,谢谢!
Fagner Brack 2015年

2
@Kazar我们不打算实际移动它,从多个来源到该URL的流量很大,而且Klaus是“ jquery-cookie”命名空间的历史所有者。无需担心该网址很快就会消失。但是,我仍然鼓励所有人开始关注新存储库中的更新。
Fagner Brack 2015年

429

无需特别使用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);
}

看一眼


2
嗨,拉斯,关于jquery cookie的好处是它转义了数据
Svetoslav Marinov

2
@lordspace-将值分别包装在window.escape / unescape中以分别写入/获取cookie值:)
Russ Cam

46
更好的cookie代码可以在这里找到:developer.mozilla.org/en/DOM/document.cookie
SDC 2012年

3
jQuery cookie插件要简单得多
brauliobo 2014年

1
除了

143
<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');

最后,您可以像这样擦除cookie

eraseCookie('test');

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

编辑:

如果要将cookie设置为所有路径/页面/目录,则将path属性设置为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();
}

谢谢,vicky


1
60 * 1000 = 60秒60 *(60 * 1000)= 60分钟,即1小时24 *(60 *(60 * 1000))= 24天的1天希望对您有所帮助。
Vignesh Pichamani 2013年

1
1 * 24 * 60 * 60 * 1000自定义1天1或您可以做365
Vignesh Pichamani 2013年

1
良好的功能...但是为什么将它们放在document.ready标签中?
Dss 2014年

1
这不是要在Safari或者IE工作,为ASCII范围之外的任何字符,如é等。此外,这是不会工作未在cookie名称或cookie的值允许一些特殊字符。我建议使用以下参考:tools.ietf.org/html/rfc6265
Fagner Brack


13

这是我使用的全局模块-

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

};

10

确保不要执行以下操作:

var a = $.cookie("cart").split(",");

然后,如果cookie不存在,调试器将返回一些无用的消息,例如“ .cookie不是函数”。

始终先声明,然后在检查null后再进行拆分。像这样:

var a = $.cookie("cart");
if (a != null) {
    var aa = a.split(",");

示例代码不完整。是仅}缺少一个还是缺少几行代码?
彼得·莫滕森

只是缺少一个},但是显然您将需要添加更多代码行以继续进行拆分。
user890332

8

这是使用JavaScript设置Cookie的方法:

下面的代码摘自https://www.w3schools.com/js/js_cookies.asp

function setCookie(cname, cvalue, exdays) {
    var d = new Date();
    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    var expires = "expires="+ d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}

现在,您可以使用以下功能获取Cookie:

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

最后,这是您检查Cookie的方式:

function checkCookie() {
    var username = getCookie("username");
    if (username != "") {
        alert("Welcome again " + username);
    } else {
        username = prompt("Please enter your name:", "");
        if (username != "" && username != null) {
            setCookie("username", username, 365);
        }
    }
}

如果要删除cookie,只需将expires参数设置为经过的日期:

document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";

7

在浏览器中设置Cookie的简单示例:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <title>jquery.cookie Test Suite</title>

        <script src="jquery-1.9.0.min.js"></script>
        <script src="jquery.cookie.js"></script>
        <script src="JSON-js-master/json.js"></script>
        <script src="JSON-js-master/json_parse.js"></script>
        <script>
            $(function() {

               if ($.cookie('cookieStore')) {
                    var data=JSON.parse($.cookie("cookieStore"));
                    $('#name').text(data[0]);
                    $('#address').text(data[1]);
              }

              $('#submit').on('click', function(){

                    var storeData = new Array();
                    storeData[0] = $('#inputName').val();
                    storeData[1] = $('#inputAddress').val();

                    $.cookie("cookieStore", JSON.stringify(storeData));
                    var data=JSON.parse($.cookie("cookieStore"));
                    $('#name').text(data[0]);
                    $('#address').text(data[1]);
              });
            });

       </script>
    </head>
    <body>
            <label for="inputName">Name</label>
            <br /> 
            <input type="text" id="inputName">
            <br />      
            <br /> 
            <label for="inputAddress">Address</label>
            <br /> 
            <input type="text" id="inputAddress">
            <br />      
            <br />   
            <input type="submit" id="submit" value="Submit" />
            <hr>    
            <p id="name"></p>
            <br />      
            <p id="address"></p>
            <br />
            <hr>  
     </body>
</html>

简单只需复制/粘贴并使用此代码来设置您的cookie。


1
请注意,浏览器默认情况下会根据文件名缓存资源。在此示例中,jquery-1.9.0.min.js当文件名更新为时,将为所有人重新加载jquery-1.9.1.min.js,否则浏览器将完全不向服务器发出请求以检查更新的内容。如果您在jquery.cookie.js不更改文件名的情况下更新其中的代码,则可能无法在已经缓存jquery.cookie.js资源的浏览器中重新加载代码。
Fagner Brack 2015年

如果要编写网站并复制/粘贴该网站,请注意,如果在jquery.cookie.js不更改文件名的情况下更新版本,则此操作将无效(除非您的服务器使用E标签处理缓存)。
Fagner Brack 2015年

如果($ .cookie('cookieStore')){var data = JSON.parse($。cookie(“ cookieStore”)); //当在其他页面中找不到加载页面时$('#name')。text(data [0]); $('#address')。text(data [1]); }
Mohammad Javad


3

我认为Fresher给了我们很好的方法,但是有一个错误:

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

您应该在getTime()附近添加“值”;否则cookie将立即过期:)


2
“值”可以是字符串。在问题中,他以1为例。值应该是键等于的值,而不是cookie过期前的天数。如果将值作为“ foo”传递,则您的版本将崩溃。
彼得

1

我以为Vignesh Pichamani的答案是最简单,最干净的。只是增加了他设置到期前天数的能力:

编辑:如果未设置天数,还添加了“永不过期”选项

        function setCookie(key, value, days) {
            var expires = new Date();
            if (days) {
                expires.setTime(expires.getTime() + (days * 24 * 60 * 60 * 1000));
                document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
            } else {
                document.cookie = key + '=' + value + ';expires=Fri, 30 Dec 9999 23:59:59 GMT;';
            }
        }

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

设置cookie:

setCookie('myData', 1, 30); // myData=1 for 30 days. 
setCookie('myData', 1); // myData=1 'forever' (until the year 9999) 

1

我知道答案很多。通常,我只需要读取cookie,并且我不想通过加载其他库或定义函数来增加开销。

这是在一行javascript中读取cookie的方法。我在Guilherme Rodrigues的博客文章中找到了答案:

('; '+document.cookie).split('; '+key+'=').pop().split(';').shift()

这将读取名为key,简洁,简洁的cookie 。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.