关闭页面时触发事件

<script language="javascript">

window.onbeforeunload = function()   

{   

      if(!(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey))   

      {   

        //在刷新、或以_self方式转到其它页面、或用ALT+CTLR+DEL关闭时触发;  

        //代码

         alert("in");

      }

      else

     {

         //点击工具栏上的[X]按钮、或ALT+F4关闭时触发 

         alert("X");

      }

}

</script>

 

转自:http://www.cnblogs.com/yiki/archive/2007/07/09/810966.html

你可能感兴趣的:(事件)