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


HTML onunload用法及代碼示例


onunload事件屬性在文檔被卸載時起作用,即在關閉瀏覽器時發生。當用戶打開鏈接並提交表單並關閉瀏覽器窗口時,通常使用它。

用法:

<element onunload = "script">

屬性值:此屬性包含單值腳本,該腳本在觸發onunload事件時起作用。

Example:

<!DOCTYPE html> 
<html> 
    <head>  
        <title> 
            HTML onunload Event Attribute 
        </title> 
          
        <script> 
            function Geeks() { 
                alert("onunload event attribute called"); 
            } 
        </script> 
    </head> 
      
    <body onunload = "Geeks()"> 
        <h1>GeeksforGeeks</h1> 
          
        <h2>onunload Event Attribute</h2> 
      
    </body> 
</html>                                    

輸出:



注意:此事件可能無法始終按預期運行。

支持的瀏覽器:下麵列出了onunload事件屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Safari
  • Opera

相關用法


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