当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。