Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

รันสคริปต์เมื่อเบราว์เซอร์ไม่สามารถดึงข้อมูลสื่อด้วยเหตุผลใด ๆ ใน HTML?


ใช้ ติดตั้ง แอตทริบิวต์ใน HTML เพื่อรันสคริปต์เมื่อเบราว์เซอร์ไม่สามารถดึงวันที่ของสื่อ

ถูกโจมตี สามารถใช้แอตทริบิวต์สำหรับองค์ประกอบต่อไปนี้ -

<video>
<audio>

ต่อไปนี้เป็นไวยากรณ์สำหรับ

<video onstalled ="script">

ต่อไปนี้เป็นไวยากรณ์สำหรับ

<audio onstalled = "script">

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน ติดตั้ง แอตทริบิวต์ −

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