탐색 사용 HTML의 동영상에서 탐색이 활성화되었음을 나타내는 속성입니다.
예시
찾기 속성이 HTML에서 활성화되어 있음을 나타내는 true로 설정된 경우 다음 코드를 실행하여 스크립트를 실행할 수 있습니다. -
<!DOCTYPE html>
<html>
<body>
<video controls onseeking = "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("Seeking starts!");
}
</script>
</body>
</html>