使用onplaying 屬性讓使用者知道音訊/視訊已開始播放。
您可以嘗試執行以下程式碼來了解如何在媒體開始播放時執行腳本 -
<!DOCTYPE html> <html> <body> <video id = "myid" width = "350" height = "200" controls onplaying = "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 started playing!"); } </script> </body> </html>
以上是當媒體在HTML中開始播放時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!