關窗 onbeforeunload 關掉 ajax async 偷 post

rusli
Site Admin
文章: 212
註冊時間: 週三 7月 07, 2010 9:49 pm

關窗 onbeforeunload 關掉 ajax async 偷 post

文章rusli » 週二 3月 06, 2012 5:17 pm

代碼: 選擇全部


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


回到「JavaScript」

誰在線上

正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客