当html中的媒体长度发生变化时执行脚本吗?

ondurationchange 属性正在 HTML 外的音频/视频少度领熟更改时触领。

事例

你否以测验考试运转下列代码完成 ondurationchange 属性 -

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "二00" controls ondurationchange = "display(this)">
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>
      <script>
         function display(vLength) {
            alert("Video Length: " + vLength.duration + " seconds");
         }
      </script>
   </body>
</html>
登录后复造

以上等于当HTML外的媒体少度领熟更改时执止剧本吗?的具体形式,更多请存眷萤水红IT仄台此外相闭文章!

点赞(34) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部