gpt4 book ai didi

javascript - 使用 jQuery 按时间间隔重新加载 Div 内容

转载 作者:行者123 更新时间:2023-12-02 17:00:21 25 4
gpt4 key购买 nike

我正在尝试修改页面,以便可以按一定时间间隔重新加载 div 的内容。这是我尝试过的:

    $("#thediv").load("/thecontent.php");
setTimeout(doPoll,1000);
}

但是,使用 Fiddler 显示请求从未发出。

最佳答案

尝试一下这个:

$(document).ready(function() {
setInterval(function() {
$("#thediv").load("thecontent.php");
}, 3000);
});

关于javascript - 使用 jQuery 按时间间隔重新加载 Div 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25777998/

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