当 seeking 属性设置为 false 时执行脚本,表明 HTML 中的搜索已结束?


在用户跳过或移动到音视频的新位置时,将执行 onseeked 属性。

示例

你可以尝试运行以下代码以实施 onseeked 属性 −

<!DOCTYPE html>
<html>
   <body>
      <h2 id = "test">Play</h2>
      <video id = "myid" width = "320" height = "176" controls onseeked = "myFunction()">
         <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 myFunction() {
         document.getElementById("test").innerHTML = "Current position: " +
         document.getElementById("myid").currentTime;
         }
      </script>
   </body>
</html>

更新于: 03-Mar-2020

138 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告