如何使用jQuery设置和取消设置cookie,例如创建一个名为test
的cookie并将值设置为1
?
答案 0 :(得分:1681)
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是在与当前路径不同的路径上创建的,您可能希望指定路径参数:
var cookieValue = $.cookie("test", { path: '/foo' });
更新(2015年4月):
如下面的评论中所述,处理原始插件的团队已删除了新项目(https://github.com/js-cookie/js-cookie)中的jQuery依赖项,该项目具有与jQuery版本相同的功能和一般语法。显然原来的插件不会去任何地方。
答案 1 :(得分:413)
没有必要特别使用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 :(得分:126)
<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');
您可以像
一样获取CookiegetCookie('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();
}
谢谢, 维基
答案 3 :(得分:17)
您可以使用此处提供的插件..
https://plugins.jquery.com/cookie/
然后写一个cookie做
$.cookie("test", 1);
访问set cookie do
$.cookie("test");
答案 4 :(得分:11)
这是我使用的全局模块 -
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);
}
};
答案 5 :(得分:9)
确保不要做这样的事情:
var a = $.cookie("cart").split(",");
然后,如果cookie不存在,调试器将返回一些无用的消息,如“.cookie not a function”。
始终先声明,然后在检查null后执行拆分。像这样:
var a = $.cookie("cart");
if (a != null) {
var aa = a.split(",");
答案 6 :(得分: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。
答案 7 :(得分:5)
您可以在Mozilla网站here
上使用该库您将能够像这样设置和获取Cookie
docCookies.setItem(name, value);
docCookies.getItem(name);
答案 8 :(得分:5)
以下是使用JavaScript设置Cookie的方法:
以下代码来自https://www.w3schools.com/js/js_cookies.asp
save_count=1000
现在您可以使用以下功能获取Cookie:
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,只需将expires参数设置为传递日期:
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);
}
}
}
答案 9 :(得分:3)
我认为Fresher给了我们很好的方式,但是有一个错误:
{{1}}
你应该在getTime()附近添加“value”;否则cookie将立即过期:)
答案 10 :(得分:0)
我知道有很多不错的答案。通常,我只需要阅读cookie,并且我不想通过加载其他库或定义函数来增加开销。
这是如何在一行javascript中读取cookie 。我在Guilherme Rodrigues' blog article中找到了答案:
('; '+document.cookie).split('; '+key+'=').pop().split(';').shift()
这将读取名为key
的cookie,它很好,干净而且简单。
答案 11 :(得分:0)
尝试(doc here,因此摘要不起作用,请运行this one)
document.cookie = "test=1" // set
document.cookie = "test=1;max-age=0" // unset
答案 12 :(得分:0)
以下代码将删除当前域和所有尾随子域(www.some.sub.domain.com
、.some.sub.domain.com
、.sub.domain.com
等)中的所有 cookie。
单行原生 JS 版本(不需要 jQuery):
document.cookie.replace(/(?<=^|;).+?(?=\=|;|$)/g, name => location.hostname.split('.').reverse().reduce(domain => (domain=domain.replace(/^\.?[^.]+/, ''),document.cookie=`${name}=;max-age=0;path=/;domain=${domain}`,domain), location.hostname));
这是这一行的可读版本:
document.cookie.replace(
/(?<=^|;).+?(?=\=|;|$)/g,
name => location.hostname
.split(/\.(?=[^\.]+\.)/)
.reduceRight((acc, val, i, arr) => i ? arr[i]='.'+val+acc : (arr[i]='', arr), '')
.map(domain => document.cookie=`${name}=;max-age=0;path=/;domain=${domain}`)
);
答案 13 :(得分:0)
我知道,已经有很多答案了,但这里有一个包含 set
、get
和 delete
都非常漂亮的原版,并且很好地融入了全局参考:
window.cookieMonster = window.cookieMonster ||
{
// https://stackoverflow.com/a/25490531/1028230
get: function (cookieName) {
var b = document.cookie.match('(^|;)\\s*' + cookieName + '\\s*=\\s*([^;]+)');
return b ? b.pop() : '';
},
delete: function (name) {
document.cookie = '{0}=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;'
.replace('{0}', name);
},
set: function (name, value) {
document.cookie =
'{0}={1};expires=Fri, 31 Dec 9999 23:59:59 GMT;path=/;SameSite=Lax'
.replace('{0}', name)
.replace('{1}', value);
}
};
通知 cookie 获取正则表达式取自 this answer to a question in another castle。
让我们测试一下:
cookieMonster.set('chocolate', 'yes please');
cookieMonster.set('sugar', 'that too');
console.log(cookieMonster.get('chocolate'));
console.log(document.cookie);
cookieMonster.delete('chocolate');
console.log(cookieMonster.get('chocolate'));
console.log(document.cookie);
如果你在尝试之前没有任何饼干,应该给你...
yes please
chocolate=yes please; sugar=that too
sugar=that too
请注意,饼干持续的时间并不长,但从我们的角度来看,基本上是这样。您可以通过查看此处的字符串或其他答案来轻松了解如何更改日期。
答案 14 :(得分:-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)
答案 15 :(得分:-1)
$.cookie("test", 1); //set cookie
$.cookie("test"); //get cookie
$.cookie('test', null); //delete cookie