当指示 HTML 中的寻求已结束的 seeking 属性设置为 false 时执行一个脚本?
当用户跳过或移动到音频或视频中的新的位置时,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>
广告