如何使用jQuery设置/取消cookie设置?
如何使用jQuery设置和取消设置cookie,例如创建名为test
的cookie并将值设置为1
?
查看插件:
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版本。 显然原来的插件不会去任何地方。
没有必要特别使用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');
你可以像这样获取cookie
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();
}
谢谢,薇琪
链接地址: http://www.djcxy.com/p/22285.html