window.onbeforeunload = function (e) {
e = e || window.event;
var y = window.event.clientY;//e.clientY:只有IE8支持
if (y <= 0//點擊瀏覽器或者選項卡的關閉按鈕
|| y >= Math.max(document.body ? document.body.clientHeight : 0,
document.documentElement ?document.documentElement.clientHeight : 0)//點擊任務欄的關閉按鈕
) {
//瀏覽器關閉之前執行的操作
$.ajax({
type: "POST",
url: "<%=path%>/pages/common/logoutForWebClose.action",
dataType: "text",
async: false,
success: function(data){
alert("closeSuccess");
}
});
}
}