HTML の onstalled 属性を使用して、ブラウザがメディアの日付を取得できない場合にスクリプトを実行します。
onstalled 属性は次の要素で使用できます -<video> <audio>
-
の構文です。-
Example の構文onstalled Properties-
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls onstalled ="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 ("Sorry! Video isn't available right now!"); } </script> </body> </html>
以上が何らかの理由でブラウザがメディア データを取得できない場合に HTML でスクリプトを実行しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。