使用 HTML 中的 onstalled# 屬性在瀏覽器無法取得媒體日期時執行腳本。
onstalled屬性可用於以下元素-<video> <audio>
以下是
<video onstalled ="script">
以下是
<audio onstalled = "script">
您可以嘗試執行以下程式碼來實作onstalled 屬性-
<!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中文網其他相關文章!