首页 > 文章列表 > 当HTML中的寻找属性设置为false时,表示寻找已结束,请执行脚本

当HTML中的寻找属性设置为false时,表示寻找已结束,请执行脚本

399 2023-09-14

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>