javascript - setInterval和document.write在IE瀏覽器下的衝突
世界只因有你
世界只因有你 2017-07-05 10:48:22
0
1
1028
function reload(){
    alert("ce");
}
window.onload=function(){
    alert("a");
    setInterval("reload()",1000);
    document.write("aaa");
};

如上,同時有 setInterval 和 document.write在其他極速瀏覽器,chrome核心瀏覽器裡沒有問題。但是在 IE11 瀏覽器裡,setInterval 就會停止。怎麼解決。謝謝。

世界只因有你
世界只因有你

全部回覆(1)
Ty80

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";
};
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板