Can I pop up a confirmation dialog when the user is closing the window in Safari/Chrome?

后端 未结 4 1344
遥遥无期
遥遥无期 2020-11-29 12:33

In IE and FF, i can attach an event handler to onBeforeUnload, and by passing a string to a property of the event, the user will see a dialog asking him whether he wants to

4条回答
  •  情深已故
    2020-11-29 13:02

    StackOverflow itself uses onbeforeunload, and it works fine for me in Safari:

    function setConfirmUnload(a){window.onbeforeunload=a?function(){return a}:null}
    

提交回复
热议问题