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>
위 내용은 HTML의 검색 속성이 false로 설정되면 검색이 종료되었음을 의미하므로 스크립트를 실행하십시오.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!