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

รันสคริปต์เมื่อสื่อถึงจุดสิ้นสุดของ HTML?


ใช้ เปิด คุณลักษณะใน HTML เพื่อรันสคริปต์เมื่อสื่อถึงจุดสิ้นสุดใน HTML คุณสามารถเพิ่มข้อความเช่น "ขอบคุณสำหรับการรับชม", "คอยติดตาม!" ฯลฯ

ตัวอย่าง

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

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls onended = "display()">
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         Your browser does not support the video element.
      </video>
      <script>
         function display() {
            alert ("Thank you for watching! Stay tuned!");
         }
      </script>
   </body>
</html>