function reload(){
alert("ce");
}
window.onload=function(){
alert("a");
setInterval("reload()",1000);
document.write("aaa");
};
如上,同時有 setInterval 和 document.write在其他極速瀏覽器,chrome核心瀏覽器裡沒有問題。但是在 IE11 瀏覽器裡,setInterval 就會停止。怎麼解決。謝謝。
PHP中文网2017-07-05 10:50:22
document.write會隱式呼叫document.open。這樣會重構document,移除所有event事件和task。
可以用document.body.innerText代替document.write
function reload(){
alert("ce");
}
window.onload=function(){
alert("a");
setInterval("reload()",1000);
document.body.innerText = "aaa";
};