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

Thực thi một tập lệnh khi độ dài của phương tiện thay đổi trong HTML?


ondurationchange thuộc tính kích hoạt khi độ dài của âm thanh / video thay đổi trong HTML.

Ví dụ

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

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls ondurationchange = "display(this)">
         <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(vLength) {
            alert("Video Length: " + vLength.duration + " seconds");
         }
      </script>
   </body>
</html>