这是我的代码:
$(function() {
if ($.cookie('is_legal') == "yes") {
//legal!
} else {
document.location = "http://www.alcoholinformate.org.mx/";
}
});
$("#yes").click(function(){
$.cookie('is_legal', 'yes', { expires: 1});
$('#agegate').hide();
});
$("#no").click(function(){
document.location = "http://www.alcoholinformate.org.mx/";
});
显然有两个按钮是和否,当我加载我的页面时,控制台显示
未捕获的TypeError:undefined不是函数
在这一行
if ($.cookie('is_legal') == "yes") {
为什么会这样?