标签:
var iframe = document.createElement("iframe"); iframe.style.width = "265px"; iframe.style.height = "490px"; iframe.style.border = "none"; iframe.src = "http://cnblogs.com/walls"; if(iframe.attachEvent){ //IE iframe.attachEvent("onload", function(){ alert("loaded 1"); }); }else{ iframe.onload = function(){ console.log("loaded 2"); }; }
摘自怪飞博客:http://www.planabc.net/2009/09/22/iframe_onload/
标签:
原文地址:http://www.cnblogs.com/walls/p/4452983.html