张文的博客

导航

判断 iframe 是否加载完成的完美方法


var iframe = document.createElement("iframe");
iframe
.src ="http://www.baidu.com";

if(iframe.attachEvent){
    iframe
.attachEvent("onload",function(){
        alert
("Local iframe is now loaded.");
   
});
}else{
    iframe
.onload =function(){
        alert
("Local iframe is now loaded.");
   
};
}

document
.body.appendChild(iframe);

posted on 2012-03-07 12:57  张文的博客  阅读(238)  评论(0编辑  收藏  举报