觸發(fā) onbeforeunload
事件在HTML文檔被卸載之前。
我們可以使用此事件顯示一條消息通知用戶離開。
確認(rèn)對話框中顯示默認(rèn)消息。您不能覆蓋此消息。
如果需要,我們可以添加我們自己的消息。
沒有。
<element onbeforeunload="script or javascript function name">
<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>
更多建議: