欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

HTML事件屬性onunload


HTML事件屬性onunload


觸發onunload屬性事件當頁面通過導航到其他頁面或關閉時已卸載瀏覽器窗口。

HTML5中的新功能

沒有。

句法

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

支持的標簽

<body>

瀏覽器兼容性

HTML事件屬性onunloadHTML事件屬性onunloadHTML事件屬性onunloadHTML事件屬性onunloadHTML事件屬性onunload
onunloadNoYesYesYesYes


例子

<!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>