오디오/비디오 재생이 시작되었음을 사용자에게 알리려면 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!