原创

js-监听控件加载完成-兼容Firefox/Opera/Safari/IE

Firefox/Opera/Safari中直接使用iframe onload事件:

// document.getElementById('idWeatherIframe').onload = function() {
// console.log('idWeatherIframe');
// alert("天气加载完成");
//
// };

兼容Firefox/Opera/Safari/IE的处理方式:
var oFrm = document.getElementById('idWeatherIframe');
oFrm.onload = oFrm.onreadystatechange = function() {
if(this.readyState && this.readyState != 'complete') return;
else {
alert("天气加载完成");
}
}
正文到此结束
本文目录