HTML事件屬性onbeforeunload

2018-01-05 13:58 更新

HTML事件屬性onbeforeunload


觸發(fā) onbeforeunload 事件在HTML文檔被卸載之前。

我們可以使用此事件顯示一條消息通知用戶離開。

確認(rèn)對話框中顯示默認(rèn)消息。您不能覆蓋此消息。

如果需要,我們可以添加我們自己的消息。

HTML5中的新功能

沒有。

句法

<element onbeforeunload="script or javascript function name">

支持的標(biāo)簽

<body>

瀏覽器兼容性

onbeforeunload Yes Yes Yes Yes Yes


例子

<!DOCTYPE html>
<html>
<body onbeforeunload="return myFunction()">

<a href="http://www.www.o2fo.com">Click here to see the dialog.</a>
      
<script>
function myFunction() {
    return "hi";
}
</script>

</body>
</html>

Click to view the demo



以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號