您现在的位置:首页 >> 前端 >> 内容

判断iframe是否加载完成的方法

时间:2018/7/14 14:53:36 点击:

  核心提示:判断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."); 
}; 
} 

Tags:判断 断I IF FR 
作者:网络 来源:catherine的