How to prevent “Are you sure you want to navigate away from this page?” alert on form submission?

前端 未结 4 650
清酒与你
清酒与你 2021-01-06 11:03

I have a simple html form with few fields in it.

I wanted to make sure that user gets an alert message when he is trying to leave the page. So I added the script on

4条回答
  •  猫巷女王i
    2021-01-06 11:33

    Try this:

    $(window).bind("beforeUnload", verify);
    $("form").submit(function (){
        $(window).unbind("beforeUnload");
    };
    

提交回复
热议问题