1 頁 (共 1 頁)

關窗 onbeforeunload 關掉 ajax async 偷 post

發表於 : 週二 3月 06, 2012 5:17 pm
rusli

代碼: 選擇全部


        $.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();
            }
        };