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

HTML事件屬性onbeforeunload


HTML事件屬性onbeforeunload


觸發onbeforeunload事件在HTML文檔被卸載之前。

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

確認對話框中顯示默認消息。您不能覆蓋此消息。

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

HTML5中的新功能

沒有。

句法

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

支持的標簽

<body>

瀏覽器兼容性

HTML事件屬性onbeforeunloadHTML事件屬性onbeforeunloadHTML事件屬性onbeforeunloadHTML事件屬性onbeforeunloadHTML事件屬性onbeforeunload
onbeforeunloadYesYesYesYesYes


例子

<!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