Answers:
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版本。显然,原始插件没有任何用。
$.removeCookie('nameofcookie', { path: '/' });
无需特别使用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, 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
é
,北
等。此外,这是不会工作未在cookie名称或cookie的值允许一些特殊字符。我建议使用以下参考:tools.ietf.org/html/rfc6265
您可以使用此处提供的插件。
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不是函数”。
始终先声明,然后在检查null后再进行拆分。像这样:
var a = $.cookie("cart");
if (a != null) {
var aa = a.split(",");
}
缺少一个还是缺少几行代码?
这是使用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=/;";
在浏览器中设置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。
jquery-1.9.0.min.js
当文件名更新为时,将为所有人重新加载jquery-1.9.1.min.js
,否则浏览器将完全不向服务器发出请求以检查更新的内容。如果您在jquery.cookie.js
不更改文件名的情况下更新其中的代码,则可能无法在已经缓存jquery.cookie.js
资源的浏览器中重新加载代码。
jquery.cookie.js
不更改文件名的情况下更新版本,则此操作将无效(除非您的服务器使用E标签处理缓存)。
我认为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将立即过期:)
我以为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)
我知道答案很多。通常,我只需要读取cookie,并且我不想通过加载其他库或定义函数来增加开销。
这是在一行javascript中读取cookie的方法。我在Guilherme Rodrigues的博客文章中找到了答案:
('; '+document.cookie).split('; '+key+'=').pop().split(';').shift()
这将读取名为key
,简洁,简洁的cookie 。
$.cookie("test", 1); //set cookie
$.cookie("test"); //get cookie
$.cookie('test', null); //delete cookie