简体   繁体   English

检查Cookie是否存在?

[英]Check if a Cookie exists or not?

I am trying to find out if a cookie exists or not, if it doesn't I want to create it. 我试图找出一个cookie是否存在,如果不存在,我想创建它。 I am doing this in Internet Explorer and its stopping at if(readCookie(count) == null) of the code below. 我正在Internet Explorer中执行此操作,它在以下代码的if(readCookie(count)== null)处停止。

if(readCookie("count") == null)
{
    createCookie("count", 0, 10);
}


function readCookie(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;
}

What am I doing wrong here? 我在这里做错了什么?

if( $.cookie('query') == null ) { 
    createCookie("count", 0, 10);
}

Try using undefined instead of null 尝试使用undefined而不是null

See the following link: 请参阅以下链接:

http://jsfiddle.net/sssonline2/D38WM/1/ http://jsfiddle.net/sssonline2/D38WM/1/

Tested on both IE and FireFox 在IE和FireFox上都经过测试

Here's a Stack Overflow link for more info: 这是更多信息的堆栈溢出链接:

typeof !== "undefined" vs. != null typeof!==“ undefined”与!= null

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM