浏览器开始脱机时在 HTML 中执行脚本?


当 Web 浏览器开始脱机时,onoffline属性会触发。您可以尝试运行以下代码来实现offoffline属性

示例

<!DOCTYPE html>
<html>
   <body ononline = "onlineFunc()" onoffline = "offlineFunc()">
      <script>
         function onlineFunc() {
            alert ("Working online!");
         }
         function offlineFunc() {
            alert ("Workinf offline!");
         }
      </script>
      <p>Got o the web browser menu bar and click the File menu. Select "Work Offline" and toggle between online and offline.</p>
   </body>
</html>

更新于:03-03-2020

183 次浏览

开启您的职业生涯

通过完成课程获得认证

立即开始
广告