使用 onseeking 属性来指示 HTML 视频中的搜索处于活动状态。
<!DOCTYPE html> <html> <body> <video controls onseeking = "display()"> <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 display() { alert("Seeking starts!"); } </script> </body> </html>
以上是当寻找属性设置为true时,表示HTML中的寻找活动正在进行时,执行一个脚本的详细内容。更多信息请关注PHP中文网其他相关文章!