HTML事件屬性onunload

2018-10-30 11:35 更新

HTML事件屬性onunload


觸發(fā) onunload 屬性事件當(dāng)頁面通過導(dǎo)航到其他頁面或關(guān)閉時(shí)已卸載瀏覽器窗口。

HTML5中的新功能

沒有。

句法

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

支持的標(biāo)簽

<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>
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號