1 2 3 4 5 6 7 8 9 10 11 12 13 14
| var iframe = document.createElement("iframe"); iframe.src = "http://www.cnblogs.com/lifeil/";
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);
|