IE同样支持iframe的onload,不过得通过 attachEvent 注册
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | var iframe = document.createElement("iframe"); iframe.src = "simpleinner.htm"; 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); |





