我需要通过jQuery从cookie中获取价值。
一切正常,直到我尝试使用setInterval()函数获取值:“未捕获的TypeError:jQuery.cookie不是函数”。
为什么jQuery在使用setInterval()调用的函数中不能识别插件(在我的情况下是jQuery.cookie)?
var view = jQuery.cookie('test_view'); //ok
var modal = function(){
openPage('after2min');
};
setTimeout(modal, 5000);
function openPage()
{
var view = jQuery.cookie('test_view'); //error - Uncaught TypeError: jQuery.cookie is not a function
}