我只需要在if语句中检查多个cookie是否处于活动状态,并且通过激活我的意思是他们是否在客户端本地cookie中。
$(function() {
if ($.cookie('setting7') == null && $.cookie('setting6') == null) {
// client doesn't have local cookies
} else {
alert('client has cookies')
};
});
我尝试使用此功能,但只有一个启用时会显示警告
答案 0 :(得分:0)
如此简单地将条件更改为||
,您要与and
进行比较,但需要or
:
$(function() {
if ($.cookie('setting7') == null || $.cookie('setting6') == null) {
// client doesn't have local cookies
} else {
alert('client has cookies')
};
});