미디어 데이터가 로드될 때 스크립트를 실행하려면 onloaddata 이벤트를 사용하세요. 다음 코드를 실행하여 onloaddata 이벤트를 구현할 수 있습니다. -
다음 코드는 비디오가 로드될 때 경고 상자를 생성합니다. -
<!DOCTYPE html> <html> <body> <video controls onloadeddata = "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("Loaded!"); } </script> </body> </html>
위 내용은 HTML의 미디어 데이터가 로드될 때 스크립트를 실행하시겠습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!