在将搜寻属性设置为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>