&n"/> &n">
使用 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中文網其他相關文章!