我需要一个JavaScript,它每隔30秒就会对一个页面进行一次关联,并显示在下次重新加载ID时需要多长时间,例如:
<p>Refreshing in <span id="time-to-update" class="light-blue"></span> seconds.</p>
我也需要它无限重复。
感谢您的阅读,我希望除了其他所有人以外,我没有帮助,如果您能制作这个剧本,那真的非常感谢。
答案 0 :(得分:1)
(function() {
var el = document.getElementById('time-to-update');
var count = 30;
setInterval(function() {
count -= 1;
el.innerHTML = count;
if (count == 0) {
location.reload();
}
}, 1000);
})();
答案 1 :(得分:1)
使用setTimeout而不是setInterval的变体,并使用cross-browser secure document.location.reload(true);
更多。
var timer = 30;
var el = document.getElementById('time-to-update');
(function loop(el) {
if (timer > 0) {
el.innerHTML = timer;
timer -= 1;
setTimeout(function () { loop(el); }, 1000);
} else {
document.location.reload(true);
}
}(el));
答案 2 :(得分:0)
var timer = {
interval: null,
seconds: 30,
start: function () {
var self = this,
el = document.getElementById('time-to-update');
el.innerText = this.seconds; // Output initial value
this.interval = setInterval(function () {
self.seconds--;
if (self.seconds == 0)
window.location.reload();
el.innerText = self.seconds;
}, 1000);
},
stop: function () {
window.clearInterval(this.interval)
}
}
timer.start();