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

รันสคริปต์เมื่อสื่อเริ่มเล่นใน HTML หรือไม่


ใช้ เล่น เพื่อให้ผู้ใช้ทราบว่าเสียง/วิดีโอเริ่มเล่นแล้ว

ตัวอย่าง

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

<!DOCTYPE html>
<html>
   <body>
      <video id = "myid" width = "350" height = "200" controls onplaying = "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("Video started playing!");
         }
      </script>
   </body>
</html>