首页 Easyui社区 easyui学习班 团购 业务 留言版 代码库 归档 登录
2011/5/22 0:32  由 ____′↘夏悸 发表在 · 分类:时光记录生活
· 0 条评论

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

var iframe = document.createElement("iframe"); 
iframe.src = "http://www.btboys.com";  
if (iframe.attachEvent){     
	iframe.attachEvent("onload", function(){         
	alert("Local iframe is now loaded.");     
	}); 
} else {     
	iframe.onload = function(){         
	alert("Local iframe is now loaded.");     
	}; 
}  
document.body.appendChild(iframe);