當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML onbeforeunload用法及代碼示例


onbeforeunload事件在文檔即將被卸載時運行。此事件用於允許在對話框中顯示消息,以通知用戶他/她想停留或離開當前頁麵。

用法:

<element onbeforeunload = "script">

屬性值:此屬性包含單值腳本,並且在調用onbeforeunload事件時運行。 <body>標簽支持此事件屬性。

Example:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>onbeforeunload attribute</title> 
        <style> 
            body { 
                text-align:center; 
            } 
            h1 { 
                color:green; 
            } 
            a { 
                text-decoration:none; 
                font-weight:bold; 
            } 
        </style> 
    </head> 
    <body onbeforeunload="return myFunction()"> 
        <h1>GeeksforGeeks</h1> 
        <h2>onbeforeunload attribute</h2>    
        <a href="https://www.geeksforgeeks.org">Go to GeeksforGeeks</a> 
        <script> 
        function myFunction() { 
            return "This document is ready to load"; 
        } 
        </script> 
    </body> 
</html>

輸出:

支持的瀏覽器:下麵列出了onbeforeunload屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera 15.0及更高版本

相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 HTML | onbeforeunload Event Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。