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无法准确判断页面是否加载完成” 这个说法。
时间: 2024-10-11 15:56:06