为什么不能这样写
请问为什么这样写没反应
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>onunload</title>
<script>
function xyz(){
alert("确定要退出?");
}
</script>
</head>
<body onunload="xyz()">
<p>欢迎来到JavaScript</p>
</body>
</html>
请问为什么这样写没反应
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>onunload</title>
<script>
function xyz(){
alert("确定要退出?");
}
</script>
</head>
<body onunload="xyz()">
<p>欢迎来到JavaScript</p>
</body>
</html>
2019-02-15
举报