文件在 HTML 中不可用时执行脚本?


在 HTML 中使用 onemptied 属性,可在 HTML 中文件不可用或为空时执行脚本。

示例

您可以尝试运行以下代码来实现 onemptied 属性 −

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls onemptied ="display()">
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         Your browser does not support the video element.
      </video>
      <script>
         function display()
         {
            alert ("Sorry! Empty playlist!");
         }
      </script>
   </body>
</html>

更新于: 03-03-2020

147 次浏览

开启您的职业生涯

完成课程后获得认证

开始
广告