HTML事件屬性onbeforeunload
HTML事件屬性onbeforeunload
觸發onbeforeunload
事件在HTML文檔被卸載之前。
我們可以使用此事件顯示一條消息通知用戶離開。
確認對話框中顯示默認消息。您不能覆蓋此消息。
如果需要,我們可以添加我們自己的消息。
HTML5中的新功能
沒有。
句法
<element onbeforeunload="script or javascript function name">
支持的標簽
<body>
瀏覽器兼容性
onbeforeunload | Yes | Yes | Yes | Yes | Yes |
例子
<!DOCTYPE html>
<html>
<body onbeforeunload="return myFunction()">
<a >Click here to see the dialog.</a>
<script>
function myFunction() {
return "hi";
}
</script>
</body>
</html>
Click to view the demo