我需要在使用javascript或PHP关闭浏览器窗口之前显示确认对话框.当我点击浏览器的关闭按钮时,应该出现确认框.其他明智的不显示对话框.请帮帮我.
ivy*_*ivy 22
你应该处理onbeforeunload事件......
function closeEditorWarning(){
return 'Are you sure?'
}
window.onbeforeunload = closeEditorWarning;
Run Code Online (Sandbox Code Playgroud)
或者使用jquery,window.attachEvent/window.addEventListener来做得很好