用JAVASCRIPT判断当前页面刷新还是关闭

  
  window.onbeforeunload   =   function()     //author:   meizz  
  {  
      var   n   =   window.event.screenX   -   window.screenLeft;  
      var   b   =   n   >   document.documentElement.scrollWidth-20;  
      if(b   &&   window.event.clientY   <   0   ||   window.event.altKey)  
      {  
          alert("是关闭而非刷新");  
          window.event.returnValue   =   "";     //这里可以放置你想做的操作代码  
      }else{
             alert("是刷新而非关闭");  
     }  
  }  
 

 

该文章转载自网络大本营:http://www.xrss.cn/Dev/Other/2007122418317.Html

你可能感兴趣的:(javascript)