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>