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 중국어 웹사이트의 기타 관련 기사를 참조하세요!