shane12
2020-02-02 14:09
<!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。
</body>
</html>
<script type="text/javascript">
window.onbeforeunload = onbeforeunload_handler;
function onbeforeunload_handler(){
var warning="";
return warning;
}
</script>
调用函数要添加(),window.onbeforeunload = onunload_message()
经过多次尝试,onunload打开页面和关闭页面都没有任何提示,建议使用onbeforeunload
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题
回答 2
回答 3