码迷,mamicode.com
首页 > 其他好文 > 详细

判断Iframe是否加载完毕

时间:2018-08-23 19:24:41      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:this   ready   class   code   function   arch   document   判断   color   

var oFrm = document.getElementById(‘Iframe4‘);
oFrm.onload = oFrm.onreadystatechange = function () {
    if (this.readyState && this.readyState != ‘complete‘) {
        //alert("加载中。。。");
    }
    else {
        var $listSearch = $(‘#Iframe4‘).contents().find(‘.listSearch‘);
        $listSearch.css("top", "30px");
    }
} 

 

判断Iframe是否加载完毕

标签:this   ready   class   code   function   arch   document   判断   color   

原文地址:https://www.cnblogs.com/RivenLw/p/9525038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!