Is it possible to display a custom message in the beforeunload popup?

后端 未结 5 2313
眼角桃花
眼角桃花 2020-11-22 06:30

When using window.onbeforeunload (or $(window).on(\"beforeonload\")), is it possible to display a custom message in that popup?

Maybe a sma

5条回答
  •  花落未央
    2020-11-22 07:22

    Try this code for all all browsers supported

    window.onbeforeunload = function (e) {
        e = e || window.event;
    
        // For IE and Firefox prior to version 4
        if (e) {
            e.returnValue = 'Sure?';
        }
    
        // For Safari
        return 'Sure?';
    };
    

提交回复
热议问题