0

我有一段 jQuery 代码,我需要在第一次加载页面时执行,然后我需要在 30 分钟后执行相同的代码(以这个值为例)当然如果页面是打开的。我知道如何使用此代码每 30 分钟执行一次代码:

window.setInterval(function() {
    ...
    });
}, 1800000); // Updates each 30 minutes

但这是最好的方法,我的意思是第一次加载页面时执行代码,然后每 30 分钟执行一次,我自己解释一下吗?

4

3 回答 3

1
$(window).load(function () {
    function func() {
        //code here
    }
    func(); // call the function window.load 
    window.setInterval(func, 1800000); // also set setInterval to run function func .
});

或者

$(document).ready(function () {
    function func() {
        //code here
    }
    func(); // call the function window.load 
    window.setInterval(func, 1800000); // also set setInterval to run function func .
});
于 2013-10-25T13:58:07.003 回答
1

将您的函数放入名称 func 中:

function blah() {
...
}

然后调用它:

window.setInterval(blah, 18000000);
blah();
于 2013-10-25T13:57:04.967 回答
0

要不就

(function() {
    // Your code

    // Then call itself again
    setTimeout(arguments.callee, 18000000);
})()
于 2013-10-25T14:15:15.347 回答