首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

判断iframe是不是加载完毕

2012-10-28 
判断iframe是否加载完毕headmeta http-equivContent-Type ctitle新建网页 1/title/headbody

判断iframe是否加载完毕

<head><meta http-equiv="Content-Type" c><title>新建网页 1</title></head><body>   [align=center" style="position: absolute; width: 100px; height: 100px; z-index: 1; left:158px; top:17px" id="load][img]http://sysimages.tq.cn/images/analysis_images/ajax-loader.gif[/img] loading[/align]<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>


http://www.cnblogs.com/lovko/archive/2009/01/04/1368013.html

热点排行