Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

검색 속성이 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>