HTML事件属性onunload

HTML事件属性onunload


触发 onunload 属性事件当页面通过导航到其他页面或关闭时已卸载浏览器窗口。

HTML5中的新功能

没有。

句法

<element onunload="script or Javascript function name">

支持的标签

<body>

浏览器兼容性

onunload No Yes Yes Yes Yes


例子

<!DOCTYPE html>
<html>
<head>
<script>
function goodbye(){
   alert("on unload");
}
</script>
</head>

<body onunload="goodbye()">

<p>Close this window or press F5 to reload the page.</p>

</body>
</html>