核心提示:判断iframe是否加载完成的方法if (iframe.attachEvent){ iframe.attachEvent(onload, function(){ alert(Local iframe ...
判断iframe是否加载完成的方法
if (iframe.attachEvent){
iframe.attachEvent("onload", function(){
alert("Local iframe is now loaded.");
});
} else {
iframe.onload = function(){
alert("Local iframe is now loaded.");
};
}


