JS判断IE关闭代码

js 代码
  1. <script language="javascript">   
  2.   
  3. window.onbeforeunload = function()   
  4. {   var n = window.event.screenX - window.screenLeft;      
  5.     var b = n > document.documentElement.scrollWidth-20;      
  6.  if(b && window.event.clientY < 0 || window.event.altKey)   
  7.  {   
  8.  window.event.returnValue = "1111";      
  9.  }    
  10. }    
  11. </script>   

你可能感兴趣的:(JavaScript,IE)