HTML에서 파일을 사용할 수 없거나 HTML에서 비어 있는 경우 스크립트를 실행하려면 HTML에서 onemptied 속성을 사용하세요.
다음 코드를 실행하여 onemptied 속성을 구현할 수 있습니다. -
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls onemptied ="display()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> Your browser does not support the video element. </video> <script> function display() { alert ("Sorry! Empty playlist!"); } </script> </body> </html>
위 내용은 HTML 파일을 사용할 수 없을 때 스크립트를 실행하시겠습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!