<script language=javascript>
function window.onbeforeunload()
{
  if(event.clientX>document.body.clientWidth&&event.clientY<0||event.altKey)
  {
    alert("你正在关闭网页, 这里可以写上你想要做的JS代码");
  }
}
</script>