gpt4 book ai didi

ajax - 如何在 jquery 中使 Ajax 每 10 秒更新一次?

转载 作者:行者123 更新时间:2023-12-01 00:54:25 39 4
gpt4 key购买 nike

如何在 jquery 中使 Ajax 每 10 秒更新一次?

    $.ajax({
type: "GET",
url: options.feedUrl,
dataType: "xml",
async:options.sync,
success: function(xml) {
}

例如,我正在测试上面的 jquery 来获取 RSS 提要。那么如何让它每 10 秒更新一次 RSS,以便用户可以在 feed 中看到新项目呢?

最佳答案

创建间隔

var ResInterval = window.setInterval('myAjaxCall()', 60000); // 60 seconds

var myAjaxCall = function() {
$.ajax({
type: "GET",
url: options.feedUrl,
dataType: "xml",
async:options.sync,
success: function(xml) {
// todo
}
};

停止

window.clearInterval(ResInterval);

关于ajax - 如何在 jquery 中使 Ajax 每 10 秒更新一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4928523/

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