我有一段jQuery代码,我需要在第一次页面加载时执行,然后我需要在30分钟后执行相同的代码(少用这个值作为示例),当然如果页面打开的话。我知道如何使用这个每30分钟执行一次代码:
window.setInterval(function() {
...
});
}, 1800000); // Updates each 30 minutes
但是这是最好的方法,我的意思是首次加载页面然后每30分钟执行一次代码,我自己解释一下吗?
答案 0 :(得分:1)
将您的函数放入名称func:
function blah() {
...
}
然后叫它:
window.setInterval(blah, 18000000);
blah();
答案 1 :(得分: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 .
});
答案 2 :(得分:0)
或者只是
(function() {
// Your code
// Then call itself again
setTimeout(arguments.callee, 18000000);
})()