gpt4 book ai didi

javascript - 定时 AJAX 请求

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

我正在使用 jQuery,并且我有一个 aAax 请求,如下所示;

    $.ajax({
type: 'POST',
url: 'test.php',
data: {
data: "test_data"
},
cache: false,
success: function(result) {
if (result == "true"){
alert("true");
}else{
alert("false");
}
},
});

这个效果很好。但是,我想在特定的时间间隔内及时执行此操作。比如说,我想每 30 秒执行一次。不应重新加载页面。我希望这一切发生在后台,隐藏。有人知道该怎么做吗?

最佳答案

setInterval(function() {
$.ajax({
type: 'POST',
url: 'test.php',
data: {
data: "test_data"
},
cache: false,
success: function(result) {
if (result == "true"){
alert("true");
}else{
alert("false");
}
}
});
}, 30000);

关于javascript - 定时 AJAX 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7255548/

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