如何使用jQuery设置和取消设置cookie,例如创建一个名为cookie并将test
值设置为1
?
看插件:
https://github.com/carhartl/jquery-cookie
然后你可以这样做:
// Set a cookie Cookies.set('name', 'value'); // Read the cookie Cookies.get('name') => // => 'value'
删除:
$.cookie("test", 1);
此外,要在cookie上设置特定天数(此处为10)的超时:
$.removeCookie("test");
如果省略expires选项,则cookie将成为会话cookie,并在浏览器退出时被删除.
涵盖所有选项:
$.cookie("test", 1, { expires : 10 });
要回读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是在与当前cookie不同的路径上创建的,您可能希望指定path参数:
var cookieValue = $.cookie("test");
更新(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); }
看一眼
如何删除现有的类名并添加一个带有jQuery和cookie的新名称?
您可以像设置cookie一样设置
setCookie('test','1','1'); //(key,value,expiry in days)
你可以像这样获得cookies
getCookie('test');
希望它会对某人有所帮助:)
编辑:
如果你想单独为主页保存cookie的路径,那就这样做吧
eraseCookie('test');
谢谢,薇薇
你可以使用这里提供的插件..
https://plugins.jquery.com/cookie/
然后写一个cookie做
$.cookie("test", 1);
访问设置cookie做
$.cookie("test");
这是我使用的全局模块 -
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); } };
确保不要做这样的事情:
var a = $.cookie("cart").split(",");
然后,如果cookie不存在,调试器将返回一些无用的消息,如".cookie not a function".
始终先声明,然后在检查null后执行拆分.像这样:
var a = $.cookie("cart"); if (a != null) { var aa = a.split(",");
在浏览器中设置cookie的简单示例:
jquery.cookie Test Suite
简单的只需复制/粘贴并使用此代码设置您的cookie.
这是使用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
最后,这是您检查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=/;";
您可以在此处使用Mozilla网站上的库
你将能够设置并获得这样的cookie
docCookies.setItem(name, value); docCookies.getItem(name);