22

我想要:

  1. 检查是否存在名为“query”的 cookie
  2. 如果是,那么什么都不做
  3. 如果否,则创建一个值为 1 的 cookie“查询”

注意:我使用的是 jQuery 1.4.2 和jQuery cookie 插件

有人对我如何做到这一点有任何建议吗?

4

3 回答 3

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:'/'});
于 2010-05-13T02:00:23.687 回答
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.

你还想要什么??

于 2010-05-13T02:04:06.347 回答
6

类似于 Jacobs 的答案,但我更喜欢测试未定义。

if($.cookie('query') == undefined){
    $.cookie('query', 1, { expires: 1 });
}
于 2013-02-26T09:40:28.050 回答