gpt4 book ai didi

javascript - 首先在 10 秒内调用 javascript 函数,然后每 25 秒调用一次 [jQuery]

转载 作者:行者123 更新时间:2023-11-30 08:26:27 25 4
gpt4 key购买 nike

这是我的代码:

setInterval(function() {
$.ajax({
type: "GET",
url: "someurl",
dataType: "json",
success: function(data) {
//Some code
}
});
}, 25 * 1000);

以上代码每 25 秒调用一次 ajax 方法。但是我第一次需要它在 10 秒内调用它,然后每 25 秒调用一次。

所以我关注了this

并将我的代码更改为如下内容:

setTimeout(function() {
setInterval(function() {
$.ajax({
type: "GET",
url: "someurl",
dataType: "json",
success: function(data) {
//Some code
}
});
}, 25 * 1000);
}, 10 * 1000);

但是好像还是不行。

最佳答案

setTimeout(function() {
function doit() {
console.log("HERE");
}
doit(); // It's already been 10 seconds, so run it now
setInterval(doit, 25 * 1000); // Run it every 25 seconds from here on out
}, 10 * 1000);

关于javascript - 首先在 10 秒内调用 javascript 函数,然后每 25 秒调用一次 [jQuery],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44838866/

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