Thuộc tính tìm kiếm HTML DOM Video trả về boolean (true / false) tương ứng với việc người dùng có đang tìm kiếm (chuyển phát hiện tại sang vị trí mới) video đang phát hay không.
Cú pháp
Sau đây là cú pháp -
Trả về giá trị boolean
mediaObject.seeking
Hãy để chúng tôi xem một ví dụ về Tìm kiếm Video DOM HTML tài sản -
Ví dụ
<!DOCTYPE html> <html> <head> <title>HTML DOM Video seeking</title> <style> * { padding: 2px; margin:5px; } form { width:70%; margin: 0 auto; text-align: center; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>HTML-DOM-Video-seeking</legend> <video id="demo" width="320" onseeking="getTrackDetails()" onseeked="getTrackDetails()" controls><source src="https://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var demo = document.getElementById("demo"); demo.autoplay =true; function getTrackDetails() { if(demo.seeking) divDisplay.textContent = 'To understand the concept watch full video'; } </script> </body> </html>
Đầu ra
Trước và sau khi tìm kiếm video -
Trong quá trình tìm kiếm video -