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


HTML onoffline用法及代碼示例


當瀏覽器在脫機模式下工作時,onoffline事件屬性起作用。它僅受<body>標簽支持。它與在線事件屬性相反。

用法:

<element onoffline = "script">


屬性值:調用onoffline屬性時,將運行腳本事件。

Example:

HTML

<!DOCTYPE html>
<html>
    <head>
        <title>onoffline event attribute</title>
        <style>
            h1 {
                color:green;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body onoffline = "gfg()">
        <h1>GeeksforGeeks</h1>
        <h2>onoffline Event Attribute</h2>
        <script>
            function gfg() {
                alert ("Browser working in offline mode");
            }
        </script>
    </body>
</html>                   

輸出:



onffline event

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

  • Firefox 3.0
  • Internet Explorer 8.0

相關用法


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