Created
July 29, 2015 01:28
-
-
Save CooLNuanfeng/1e0aae07f9c89d841caf to your computer and use it in GitHub Desktop.
监听窗口关闭事件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onbeforeunload = onbeforeunload_handler; | |
window.onunload = onunload_handler; | |
function onbeforeunload_handler(){ | |
var warning="确认退出?"; | |
return warning; | |
} | |
function onunload_handler(){ | |
var warning="谢谢光临"; | |
alert(warning); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment