天天看點

關閉IE視窗時執行事件

<script language="javascript">

 //關閉視窗時自動退出

 function  window.onbeforeunload(){

  if(event.clientX>360&&event.clientY<0||event.altKey){  

   //alert("dddddddddd");

   Logout();

  }  

 }  

 function  Logout(){  

     try{  

     xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");  

     }catch(e){  

     xmlHttp = new XMLHttpRequest();  

     }  

     //資料傳輸,flase為非異步方式

     xmlHttp.open("post","enter.asp?Active=Logout",true);  

     xmlHttp.send(null);  

</script>  

繼續閱讀