Confirm Dialog when i close the browser?

后端 未结 3 581
再見小時候
再見小時候 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 07:11

    You should handle the onbeforeunload event...

    function closeEditorWarning(){
        return 'Are you sure?'
    }
    window.onbeforeunload = closeEditorWarning;
    

    Or use jquery, window.attachEvent / window.addEventListener to do it nicely

提交回复
热议问题