$ .cookie('name')不是函数?

时间:2012-04-07 15:53:53

标签: javascript jquery cookies

我正在尝试保存并使用cookie来了解viewStyle用户想要什么样的类型。这个cookie有一个swich。

这就是我想要更新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');
                } 

但是我得到了这个firebug错误:

$.cookie is not a function
[Parar en este error]   

我试过

                if(typeof $.cookie('viewBy') != 'undefined' &&($.cookie('viewBy'))){
                        $('.viewBy li').toggleClass('active');
                        $('.recetaTitular').addClass('titular');
                } 

但得到同样的错误

1 个答案:

答案 0 :(得分:5)

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

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

之后加载jQuery插件。