Play Wait 속성은 동영상이 일시 중지되고 다시 시작하기 위해 버퍼링될 때 발생합니다. 다음 코드를 실행하여 onwaiting 속성 - 위 내용은 미디어가 일시 중지되었지만 HTML에서 다시 시작될 것으로 예상되는 경우 스크립트를 실행합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!미디어가 일시 중지되었지만 HTML에서 다시 시작될 것으로 예상되는 경우 스크립트를 실행합니다.
Example
<!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>
을 구현할 수 있습니다.