觸發(fā) onunload
屬性事件當(dāng)頁面通過導(dǎo)航到其他頁面或關(guān)閉時(shí)已卸載瀏覽器窗口。
沒有。
<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>
更多建議: