给iframe绑定事件

<script>
 function setit(){
 if(document.all){
 document.getElementById("myframe").attachEvent("onblur",dothis);
 }else{
 document.getElementById("myframe").contentWindow.addEventListener("blur",dothis,false);
 }
 }
 
 function dothis(){
 alert("blurred");
 }
 </script>
 
 <body onload="setit()">
 <iframe  width="155" height="144" id="myframe"></iframe>
 <input />
 </body>
posted @ 2012-10-31 22:37  虚一而静  阅读(1007)  评论(0编辑  收藏  举报