我正在尝试保存和使用 cookie 来了解用户想要什么样的 viewStyle。这个饼干有一个开关。
这就是我想要更新 cookie 的方式
$('body').on('click','.viewBy li a',function(){
if($('.titular').length > 0){
$.cookie('viewBy','titular',{expires:30});
}else{
$.cookie('viewBy','',{expires:30});
}
});
这就是我检查的方式
if($.cookie('viewBy')){
$('.viewBy li').toggleClass('active');
$('.recetaTitular').addClass('titular');
}
但我得到这个萤火虫错误:
$.cookie is not a function
[Parar en este error]
我试过了
if(typeof $.cookie('viewBy') != 'undefined' &&($.cookie('viewBy'))){
$('.viewBy li').toggleClass('active');
$('.recetaTitular').addClass('titular');
}
但得到同样的错误