我使用 jQuery ajax 每 2 秒刷新一次 div。
如何在 60 秒后停止刷新(例如,如果用户处于非活动状态)?
setInterval(function() {
$.ajax({
url: "feeds.php",
cache: false
}).done(function( html ) {
$('#feeds').replaceWith('<div id="feeds">'+html+'</div>');
});
}, 2000);
谢谢 !