我想:
注意:我使用的是jQuery 1.4.2和jQuery cookie plugin。
有没有人对我如何做到这一点有任何建议?
答案 0 :(得分:49)
if($.cookie('query') === null) {
$.cookie('query', '1', {expires:7, path:'/'});
}
或者,您可以为此编写一个包装函数:
jQuery.lazyCookie = function() {
if(jQuery.cookie(arguments[0]) !== null) return;
jQuery.cookie.apply(this, arguments);
};
然后你只需要在你的客户代码中写这个:
$.lazyCookie('query', '1', {expires:7, path:'/'});
答案 1 :(得分:6)
此??
$.cookie('query', '1'); //sets to 1...
$.cookie('query', null); // delete it...
$.cookie('query'); //gets the value....
if ($.cookie('query') == null){ //Check to see if a cookie with name of "query" exists
$.cookie('query', '1'); //If not create a cookie "query" with a value of 1.
} // If so nothing.
你还想要什么?
答案 2 :(得分:6)
类似于Jacobs的答案,但我更喜欢测试未定义的。
if($.cookie('query') == undefined){
$.cookie('query', 1, { expires: 1 });
}