
unloaded 属性在网页卸载时触发。您可以尝试运行以下代码来实现 HTML 中的 unloaded 属性 -
示例
<!DOCTYPE html>
<html>
<body onunload = "display()">
<h2>Tutorialspoint</h2>
<h3>Simply Easy learning</h3>
<script>
function display() {
alert("Bye!");
}
</script>
</body>
</html>

