JS经验库

时间:2014-05-10 02:33:03   收藏:0   阅读:318

1.IE状态栏无法结束的问题

bubuko.com,布布扣
 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 }
bubuko.com,布布扣

个人比较赞成 “对于页面中多iframe之间进行通讯时,IE无法准确判断页面是否加载完成”  这个说法。

JS经验库,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!