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

般来说,我们判断 iframe 是否加载完成其实与 判断 JavaScript 文件是否加载完成 采用的方法很类似:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
var iframe = document.createElement("iframe");
iframe.src = "http://www.planabc.net";
if (!/*@cc_on!@*/0) { //if not IE   
    iframe.onload = function(){       
        alert("Local iframe is now loaded.");   
    };
} else {   
    iframe.onreadystatechange = function(){//ie
        if (iframe.readyState == "complete"){           
            alert("Local iframe is now loaded.");
        }
    };
}
document.body.appendChild(iframe);

 最近, Nicholas C. Zakas 文章《Iframes, onload, and document.domain》的评论中 Christopher 提供了一个新的判断方法(很完美)

复制代码
var iframe = document.createElement("iframe");
iframe.src = "http://www.planabc.net";
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   huangfenggu  阅读(888)  评论(0编辑  收藏  举报

编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示