gpt4 book ai didi

javascript - 类型错误 : object is not a function - jquery

转载 作者:行者123 更新时间:2023-11-30 08:39:00 24 4
gpt4 key购买 nike

我正在为网站开发“每日报价”功能。它工作正常,但我收到一个 JavaScript 错误“类型错误:对象不是函数”。

        jQuery(function ($) {
var output = '';
$.post( "getquote.php?getjson", function( data ) {
var data = JSON.parse(data);
console.log(data);
$.each(data, function(index, value){
output += '<p>'+value.quote+'</p>';
});
$('#qotd').html(output)('refresh');
});
});

错误指向的行是:$('#qotd').html(output)('refresh');

代码输出一条数据库记录到id为qotd(quote of the day)的div标签。

正如我所说,代码运行完美,所以我肯定只是略微遗漏了一些东西。

最佳答案

$('#qotd').html(output)('refresh') 替换为 $('#qotd').html(output);

你需要刷新,jQuery 已经很性感了。

关于javascript - 类型错误 : object is not a function - jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28528341/

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