欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-06-10 11:23:10
...

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

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);