ASP.NET: Warning on changed data closing windows

后端 未结 6 1474
深忆病人
深忆病人 2021-01-06 22:26

I\'d like to warn users when they try to close a browser window if they didn\'t save the changes they made in the web form.

I\'m us

6条回答
  •  孤城傲影
    2021-01-06 22:36

    you'll want to leverage off the

    window.onbeforeunload
    

    event. Similar to Gmail if you attempt to close the window when you haven't saved a composed email.

    Theres some sample JS here.

    http://forums.devarticles.com/javascript-development-22/how-to-stop-browser-from-closing-using-javascript-8458.html

提交回复
热议问题