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

前端 未结 17 1580
深忆病人
深忆病人 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:52

    You can add an onchange event on the textarea (or any other fields) that set a variable in JS. When the user attempts to close the page (window.onunload) you check the value of that variable and show the alert accordingly.

提交回复
热议问题