<!DOCTYPE HTML>
<html lang="en-US"><head> <meta charset="UTF-8"> <title></title></head><body> <script type="text/javascript"> var iframe = document.createElement("iframe"); iframe.src = "http://www.baidu.com"; ifrmae.style.display = 'none'; if (iframe.attachEvent) { iframe.attachEvent("onload", function(){ alert("IE Local iframe is now loaded."); }); } else { iframe.onload = function(){ alert("Local iframe is now loaded.2"); }; } document.body.appendChild(iframe); </script></body></html>