使用oncanplay 屬性定義音訊/視訊何時準備好開始播放。
您可以嘗試執行以下程式碼來了解如何在媒體準備開始播放時執行腳本 -
<!DOCTYPE html> <html> <body> <video id = "myid" width = "320" height = "176" controls oncanplay="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("Video loaded!"); } </script> </body> </html>
以上是當媒體準備好開始播放時,在HTML中執行腳本的詳細內容。更多資訊請關注PHP中文網其他相關文章!