1 回答
TA贡献123条经验 获得超103个赞
onunload 网页卸载了之后
onbeforeunload 网页卸载了之前
onunload 如果你只有一个当前网页,那么关了之后浏览器就关了 是不会弹窗的 。
反之 onbeforeunload 是在你点关闭之前就弹窗确认
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onbeforeunload测试</title>
<script>
function checkLeave(){
event.returnValue="确定离开当前页面吗?";
}
</script>
</head>
<body onbeforeunload="checkLeave()">
</body>
</html>
//测试下面这个记得多开一个网页<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onunload测试</title>
<script>
function checkLeave(){
alert("欢迎下次再来!");
}
</script>
</head>
<body onunload="checkLeave()">
</body>
</html>
添加回答
举报