色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

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>