截获浏览器关闭消息


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)
  {
    window.event.returnValue = "";  //这里可以放置你想做的操作代码
  }
}
 

转载于:https://www.cnblogs.com/hdjjun/archive/2008/06/17/1223722.html

你可能感兴趣的:(截获浏览器关闭消息)