卸载事件应该存在bug,一下有一个解决方法
这是我搜到的其中一个方法;
还有似乎alert,prompt,confirm等弹窗都无法生效。网上参考过来的!
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 卸载事件 </title>
<script type="text/javascript">
window.onbeforeunload=function(event){
event.returnValue=false;
}
</script>
</head>
<body>
欢迎学习JavaScript。
</body>
</html>