在谷歌和火狐中完全没有反应,IE中加载到百度时才弹出页面?为什么?????
欢迎学习JavaScript 跳转到百度
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> 卸载事件 </title>
<script type="text/javascript">
window.onunload = onunload_message;
function onunload_message(){
alert("您确定离开该网页吗?");
}
</script>
</head>
<body>
欢迎学习JavaScript
<a href="https://www.baidu.com/">跳转到百度</a>
</body>
</html>
举报