Computer >> Máy Tính >  >> Lập trình >> HTML

Thực thi một tập lệnh khi trình duyệt không thể tìm nạp dữ liệu phương tiện vì lý do gì trong HTML?


Sử dụng tính năng đã cài đặt trong HTML để thực thi một tập lệnh khi trình duyệt không thể tìm nạp ngày phương tiện.

Đã cài đặt thuộc tính có thể được sử dụng cho các phần tử sau -

<video>
<audio>

Sau đây là cú pháp cho

<video onstalled ="script">

Sau đây là cú pháp cho

<audio onstalled = "script">

Ví dụ

Bạn có thể thử chạy mã sau để triển khai onstalled thuộc tính -

<!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>