onbeforeunload警告自定义文本

时间:2017-07-11 05:49:24

标签: javascript jquery

我正在尝试自定义退出弹出窗口中显示的文本但由于某些原因它没有注册我提供的文本。

    window.thisPage = window.thisPage || {};
    window.thisPage.isDirty = false;

    window.thisPage.closeEditorWarning = function (event) {
        if (window.thisPage.isDirty)
            return 'Please save your current RFP draft before proceeding.' +
                   ' - if you leave before saving, then your changes will be lost.'
        else
            return undefined;
    };

    $("form").on('keyup', 'textarea,input,select', 
                 function () { 
                     window.thisPage.isDirty = true; 
                 });

    $("form").submit(function () {
        window.thisPage.isDirty = false;
    });

    window.onbeforeunload = window.thisPage.closeEditorWarning;

任何人都可以查看我错过的内容吗?

还可以使用我自己的样式自定义弹出窗口吗?

0 个答案:

没有答案