本文介绍了关闭浏览器时确认对话框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在使用javascript或PHP关闭浏览器窗口之前显示确认对话框。当我点击浏览器的关闭按钮时,确认框应该是
。其他明智的不显示对话框。
请帮帮我。
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 don't display dialog.please help me any.
推荐答案
你应该处理onbeforeunload事件......
You should handle the onbeforeunload event...
function closeEditorWarning(){
return 'Are you sure?'
}
window.onbeforeunload = closeEditorWarning;
或者使用jquery,window.attachEvent / window.addEventListener来做得很好
Or use jquery, window.attachEvent / window.addEventListener to do it nicely
这篇关于关闭浏览器时确认对话框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!