當檔案可以一直播放到最後而無需在HTML 中暫停緩衝時,使用oncanplaythrough 屬性執行腳本.
您可以嘗試執行下列程式碼來實作oncanplaythrough 屬性-
<!DOCTYPE html> <html> <body> <video id = "myVideo" width = "400" height = "200" controls oncanplaythrough = "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("Can be played without pausing for buffering."); } </script> </body> </html>
以上是當一個檔案可以一直播放到最後而不需要緩衝暫停時,在HTML中執行一個腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!