Confirm Dialog when i close the browser?

后端 未结 3 583
再見小時候
再見小時候 2020-12-06 06:41

i need to display confirm dialog box before close browser window using javascript or PHP. the confirm box should come when i click the close button of browser. other wise do

3条回答
  •  暖寄归人
    2020-12-06 06:57

    onunload is not very useful (in my opinion) as you can't do anything with the confirmation you're requesting (except maybe attempt to new another window with window.open, so onbeforeunload is more useful for this case.

    Your better bet is onbeforeunload, which is great but won't work in Opera (though this usually isn't a deal breaker).

    Like ivy said, it would look something like this:

    
    

提交回复
热议问题