架构深渊

慢慢走进程序的深渊……关注领域驱动设计、测试驱动开发、设计模式、企业应用架构模式……积累技术细节,以设计架构为宗。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

判断iframe是否加载完毕的方法(兼容ie和Firefox)

Posted on 2009-01-04 12:38  chen eric  阅读(4717)  评论(2编辑  收藏  举报
<head>
<meta http-equiv="Content-Type" c>
<title>新建网页 1</title>
</head>

<body>   

<div align="center" style="position: absolute; width: 100px; height: 100px; z-index: 1; left:158px; top:17px" id="load"><img src="http://sysimages.tq.cn/images/analysis_images/ajax-loader.gif" />&nbsp;loading</div>
<iframe style="visibility:hidden" onreadystatechange=stateChangeIE(this) onload=stateChangeFirefox(this) name="callframe" id="callframe" width="420" height="100" frameborder="0" scrolling="no" marginheight="0"></iframe>
<script>   
    function stateChangeIE(_frame)
    { 
     if (_frame.readyState=="interactive")//state: loading ,interactive,   complete
     {
       var loader = document.getElementById("load"); 
        loader.innerHTML      = "";    
        loader.style.display = "none"; 
        _frame.style.visibility = "visible";   
     }   
    }
    function stateChangeFirefox(_frame)
    { 
       var loader = document.getElementById("load"); 
        loader.innerHTML      = "";    
        loader.style.display = "none"; 
        _frame.style.visibility = "visible";   
    }
    callframe.location.href="http://www.hao123.com"; 
</script>   
</body>
</html>