如何防止window.setInterval()函数自行停止?该功能运行一小段时间然后停止。我希望setInterval函数永久运行。感谢。
var id = window.setInterval(function() {
reloadIFrame()
}, 10000);
function reloadIFrame() {
console.log('reloading..');
document.getElementById('c').contentWindow.location.reload();
setTimeout(5000);
// do stuff here
}