搜尋

首頁  >  問答  >  主體

javascript - setInterval和document.write在IE瀏覽器下的衝突

function reload(){
    alert("ce");
}
window.onload=function(){
    alert("a");
    setInterval("reload()",1000);
    document.write("aaa");
};

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

世界只因有你世界只因有你2745 天前1043

全部回覆(1)我來回復

  • PHP中文网

    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";
    };

    回覆
    0
  • 取消回覆