javascript - setInterval和document.write在IE浏览器下的冲突
世界只因有你
世界只因有你 2017-07-05 10:48:22
0
1
1011
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";
};
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板