JS经验库
时间:2014-05-10 02:33:03
收藏:0
阅读:318
1.IE状态栏无法结束的问题
1 function clearStatusBar(){ 2 this.bd = document.body; 3 this.tmp = document.creatElement("div"); 4 this.tmp = style.display = "none"; 5 this.tmp.innerHTML = "<iframe border=‘0‘ frameborder=‘0‘></irame>"; 6 this.bd.append(this.tmp); 7 return this; 8 } 9 10 window.onload = funtion(){ 11 clearStatusBar(); 12 }
个人比较赞成 “对于页面中多iframe之间进行通讯时,IE无法准确判断页面是否加载完成” 这个说法。
评论(0)