我想在给定的时间间隔内更新一些<div>
。
假设每3秒调用mypost()
函数。
如何在jquery中执行此操作?
谢谢
阿尔曼。
答案 0 :(得分:3)
jquery中没有任何内容可以让你这样做,因为有原生的javascript window.setInterval函数:
window.setInterval(function() {
// this will be invoked on every 5s
$.post(...);
}, 5000);
如果您只想调用一次:
window.setTimeout(function() {
// this will be invoked after 5s only once
$.post(...);
}, 5000);