有谁知道是否有这样的事情?
我有一个正在插入的 iframe,$.ajax()
我想在 iframe 中的内容完全加载后做一些事情:
....
success: function(html){ // <-- html is the IFRAME (#theiframe)
$(this).html(html); // $(this) is the container element
$(this).show();
$('#theiframe').load(function(){
alert('loaded!');
}
....
它有效,但我看到 IFRAME 加载了两次(警报也显示了两次)。