代碼: 選擇全部
$.ajaxSetup({ async: false });
window.onbeforeunload = null;
window.onbeforeunload = function (e) {
if (!e) e = window.event;
$.get('@Url.Action("CancelProcess", "Excel")');
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
//e.stopPropagation works only in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
};