我有一个包含一些 iframe 的 div 元素。有时,我会销毁这些 iframe 并创建一个新的,但我总是需要知道它们中的每一个(以及后来添加的)何时完成加载。我认为以下代码可以工作,但调试控制台中没有任何记录。有什么帮助吗?
// doesn't work
$('#viewport').on('load', 'iframe', function() {
console.log('LOADED!');
return true;
});
// doesn't work either
$('#viewport').on('ready', 'iframe', function() {
console.log('LOADED!');
return true;
});