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

เรียกใช้สคริปต์เมื่อสื่อหยุดชั่วคราว แต่คาดว่าจะกลับมาทำงานต่อในรูปแบบ HTML หรือไม่


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <h2 id = "test">Play</h2>
      <video id = "myid" width = "320" height = "176" controls onwaiting = "myFunction()">
         <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 myFunction() {
            document.getElementById("test").innerHTML = "Media resumes again";
         }
      </script>
   </body>
</html>