js监听iframe是否加载完毕
代码片
.
//初始化加载
var a = document.getElementById(iframe的id);
var iframeLoad = function () {
window.setTimeout(function() {
console.log("加载完毕")
}, 100);
//移除监听器
a.removeEventListener("load", iframeLoad, true);
};
a.addEventListener('load', iframeLoad, true);
})
}