0

我正在尝试保存和使用 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');
                } 

但得到同样的错误

4

1 回答 1

5

$.cookie不是 jQuery 函数。您需要包含一个插件,也许是这个:

https://github.com/carhartl/jquery-cookie

加载 jQuery 插件后。

于 2012-04-07T16:05:35.443 回答