gpt4 book ai didi

jquery - 对象函数 (a,b){return new e.fn.init(a,b,h)} 没有方法 'cookie'

转载 作者:行者123 更新时间:2023-12-03 22:17:46 26 4
gpt4 key购买 nike

尝试获取 cookie 的值(如果已设置),并使用 cookie 值更新 div,否则生成一个介于80-100,将其设置为 cookie,然后更新 div

我收到错误:

Object function (a,b){return new e.fn.init(a,b,h)} has no method 'cookie' 

这是我的代码:

$(document).ready(function(){

var thecounter = '';

if ($.cookie('thecounter') == null)
{
thecounter = $.randomBetween(80, 100);
$.cookie('thecounter', thecounter, { path: '/' });
}
else
{
thecounter = $.cookie('thecounter');
}

$('dd-counter-num').html(thecounter);

setTimeout(newtime, 5000);

});

function newtime () {

var newtime = $.cookie('thecounter') + $.randomBetween(1, 2);
$.cookie('thecounter', newtime, { path: '/' });
$('dd-counter-num').html(newtime);
setTimeout(newtime, 5000);

}

最佳答案

标准中没有 cookie 方法 jQuery .

也许代码需要 jquery-cookie或者其他插件?

祝你编码愉快。

关于jquery - 对象函数 (a,b){return new e.fn.init(a,b,h)} 没有方法 'cookie',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10920055/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com