1

在 stackoverflow.com 上查看了许多类似的问题(也在其他资源上),但没有找到答案。所以我简化和概括了问题。这似乎是显而易见的解决方案:

$(document).ready(function() {
    var a = 3;
    var b = 5;

    // no message when pressed submit button
    $('form').submit(function() {
        $(window).off('beforeunload');
    });

    // confirm of the need to save
    $(window).on('beforeunload', function(e) {
        if (a != b)
            if (confirm('You changed data. Save?')) {
                $('form').submit();
                // alert('Your data is saved. (With alert submit() work only in FireFox!?)');
            }
    });
});

但不提交作品。如果你使用 alert(),它只在 FireFox 中有效。我想更正(可能没有延迟)跨浏览器解决方案。也许谁从根本上知道另一种方法解决方案。

PS 关于第一部分中描述的一些原创性 beforeunload:https ://stackoverflow.com/a/6065085/1356425 ,但这不是解决方案明显的功能。

4

3 回答 3

0

我为相应的浏览器使用了同步 AJAX (JAX) 请求并为事件 onUnload 或 onBeforeUnload 运行一次处理程序。该解决方案具有单一且几乎跨浏览器的行为。

示例(在 jsfiddle 上):

$(document).ready(function() {

    var form = $('form');
    var textareas = $('textarea');

    function array_compare(a_0, a_1) {
        if(a_0.length != a_1.length)
            return false;

        for(i = 0; i < a_0.length; i++)
            if(a_0[i] != a_1[i])
                return false;

        return true;
    }

    var flag = false; // flag to control the execution of the unloadHandler() once
    var a_open = []; // array with data before unload

    $('textarea').each(function(index) {
        a_open.push($(this).val());
    });

    function unloadHandler() {
        if (flag)
            return;

        var a_close = []; // array with data during unload
        $('textarea').each(function(index) {
            a_close.push($(this).val());
        });

        if (!array_compare(a_open, a_close)) {
            if (confirm('You changed the data, but not saved them. Save?')) {
                $.ajax({
                    type: 'POST',
                    url: '/echo/json/',
                    async: false,
                    data: form.serialize()/* {
                        json: JSON.stringify({
                            text: 'My test text.'
                        }),
                        delay: 3
                    } */,
                    success: function(data) {
                        if (data) {
                            console.log(data);
                            alert('All data is saved!');
                        }
                    }
                });
            }
        }

        flag = true;
    }

    // For FireFox, Chrome
    $(window).on('beforeunload', function () {
        unloadHandler();
    });

    // For Opera, Konqueror
    $(window).unload(function() {
        unloadHandler();
    });

    // Without message when pressed submit button
    $('form').submit(function() {
        $(window).off('beforeunload');
        $(window).off('unload');
    });

});
于 2013-03-11T14:55:53.387 回答
0

Chrome 和 Firefox 在 onbeforeunload-event 之后阻止提交。你必须使用

$(window).on('beforeunload', function(e) {
        if (a != b)
            return 'You\'ve changed the data. Leave page anyway?';
        }                
    });
于 2013-02-05T14:53:13.520 回答
0

提交卸载数据的最佳方式是将其存储在本地存储中,并在下次请求同一来源下的任何其他页面时发送。

  function sendBeacon(data) {

    data?dataArr.push(data):'';

    for (var i = 0, len = dataArr.length; i < len; i++) {
        $.getScript(dataArr[i], (function (index) {
            dataArr.splice(index, 1) //Updata dataArray on data submission
        }(i)))
    }
}

$(window).on('beforeunload', function () {
    localStorage.setItem('dataArr', JSON.stringify(dataArr));
})

var dataArr = JSON.parse(localStorage.getItem('dataArr'));

if (!dataArr) {
    dataArr = []; // Create Empty Array
} else {
    sendBeacon(dataArr); //Submit stored data
} 
于 2014-04-20T15:18:23.093 回答