onload
事件在Chrome中有效,但在Safari中无效。 resizeIframe(this);
没有被呼叫。
function renderList() {
for (var i = 0; i < List.length; i++) {
var htmlStr = '<iframe id="f_' + id + '" onload="resizeIframe(this)"></iframe>';
$(".my-cards").html(htmlStr);
}
}
function resizeIframe(obj) {
console.log(obj);
}