📌  相关文章
📜  在页面上完全加载 jquery - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:55.983000             🧑  作者: Mango

代码示例1
$(window).load(function () {
    ....
});

If you have to wait for an iframe (and do not care about the assets, just the 
DOM) - try this:

$(document).ready(function() { 
    $('iframe').load(function() { 
       // do something
    });
});