How to show the “Are you sure you want to navigate away from this page?” when changes committed?

前端 未结 17 1583
深忆病人
深忆病人 2020-11-22 02:11

Here in stackoverflow, if you started to make changes then you attempt to navigate away from the page, a javascript confirm button shows up and asks: \"Are you sure you want

17条回答
  •  情深已故
    2020-11-22 02:55

    To make this work in Chrome and Safari, you would have to do it like this

    window.onbeforeunload = function(e) {
        return "Sure you want to leave?";
    };
    

    Reference: https://developer.mozilla.org/en/DOM/window.onbeforeunload

提交回复
热议问题