我正在编写一些代码来自动更新页面上的某些数据。
我已经编写了这个函数来向用户显示何时会发生这种情况,但是页面在标题更新时不时地闪烁白色。我已经在chrome和IE上测试过并且没有闪光灯。
计时器上没有其他功能,因为我还没有编写更新功能,因此提醒("更新")
window.setInterval(function(){
window.start-=1;
var minutes = Math.floor(window.start/60);
var seconds = window.start % 60;
if(seconds<10) seconds = "0"+seconds;
if(window.start<0){
alert("updated");
window.start=300;
}
document.title = "update in - "+minutes+":"+seconds;
}, 1000);