当给定的cookie不存在时,结果必须为 null undefined ,但在这种情况下 favouritescook 不存在,但脚本认为确实存在。

如果结果为null或未定义,则结果必须为“确定检测”,但是结果为“错误,无检测结果”。为什么这不起作用?

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.js"></script>
<script>
actcookies=jQuery.cookie("favouritescook");
function fav(id)
{
    if (actcookies=='undefined' || actcookies=='null')
    {
        alert("OK detect");
    }
    else
    {
        alert("BAD Not detect Result : "+actcookies);
    }
}
</script>

<div onclick="fav(1);">Test Now 1</div>

我曾在不同的浏览器中尝试过此方法,但结果相同。我不明白

最佳答案

它不会返回undefined,您需要将 Controller 更改为

if (typeof actcookies=='undefined' || !actcookies)
{
    alert("OK detect");
}
else
{
    alert("BAD Not detect Result : "+actcookies);
}

09-25 17:38