如何检测 iframe 是否已加载?

IT技术 javascript jquery html iframe
2021-01-21 12:54:41

我试图在用户单击按钮后检查 iframe 是否已加载。

我有

$('#MainPopupIframe').load(function(){
    console.log('load the iframe')
    //the console won't show anything even if the iframe is loaded.
})

HTML

<button id='click'>click me</button>

//the iframe is created after the user clicks the button.
<iframe id='MainPopupIframe' src='http://...' />...</iframe>

有什么建议?

顺便说一下,我的 iframe 是动态创建的。它不会随着初始页面加载而加载。

3个回答

你可以试试这个(使用jQuery

$(function(){
    $('#MainPopupIframe').load(function(){
        $(this).show();
        console.log('iframe loaded successfully')
    });
        
    $('#click').on('click', function(){
        $('#MainPopupIframe').attr('src', 'https://heera.it');    
    });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id='click'>click me</button>

<iframe style="display:none" id='MainPopupIframe' src='' /></iframe>

jsfiddle 演示

更新:使用普通javascript

window.onload = function(){
    var ifr = document.getElementById('MainPopupIframe');
    ifr.onload=function(){
        this.style.display='block';
        console.log('laod the iframe')
    };

    var btn = document.getElementById('click');    
    btn.onclick=function(){
        ifr.src='https://heera.it';    
    };
};
<button id='click'>click me</button>

<iframe style="display:none" id='MainPopupIframe' src='' /></iframe>

jsfiddle 演示

更新:你也可以试试这个(动态 iframe)

$(function(){
    $('#click').on('click', function(){
        var ifr = $('<iframe/>', {
            id:'MainPopupIframe',
            src:'https://heera.it',
            style:'display:none;width:320px;height:400px',
            load:function(){
                $(this).show();
                alert('iframe loaded !');
            }
        });
        $('body').append(ifr);    
    });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button id='click'>click me</button><br />

jsfiddle 演示

推荐什么?这是我知道的jQuery附加负载监听器(而不是唯一的方式.click.change等等,这是他们的相应别名on对应)。
2021-03-17 12:54:41
@Rouge,尝试更新的答案。你可能喜欢这个。谢谢 :-)
2021-03-23 12:54:41
感谢谢赫的回答。但是,加载页面时我没有可用的 MainpopupIframe 元素。MainpopipIframe 是在用户单击按钮后创建的。所以 .load 函数对我的情况不起作用。无论如何要存档我需要的结果?谢谢。+1
2021-03-24 12:54:41
@SheikhHeera:如何检查它是否未加载,以便我可以插入源.....if(iframe_loaded){什么都不做...}else{插入 iframe 的 src}
2021-04-06 12:54:41
load()已弃用,但这只是因为它与 ajax 函数冲突。推荐的替代品很简单on("load")(不幸的是,文档并没有明确说明这就是您需要做的全部。)
2021-04-10 12:54:41

我想像这样:

<html>
<head>
<script>
var frame_loaded = 0;
function setFrameLoaded()
{
   frame_loaded = 1;
   alert("Iframe is loaded");
}
$('#click').click(function(){
   if(frame_loaded == 1)
    console.log('iframe loaded')
   } else {
    console.log('iframe not loaded')
   }
})
</script>
</head>
<button id='click'>click me</button>

<iframe id='MainPopupIframe' onload='setFrameLoaded();' src='http://...' />...</iframe>

您也可以尝试 onload 事件;

var createIframe = function (src) {
        var self = this;
        $('<iframe>', {
            src: src,
            id: 'iframeId',
            frameborder: 1,
            scrolling: 'no',
            onload: function () {
                self.isIframeLoaded = true;
                console.log('loaded!');
            }
        }).appendTo('#iframeContainer');

    };