x
 
<!DOCTYPE html> 
<html> 
<body> 
<p>本例演示如何将 "onloadeddata" 事件分配给 video 元素。</p>
<video controls onloadeddata="myFunction()">
  <source src="/i/photo/shanghai.mp4" type="video/mp4">
  Your browser does not support HTML5 video.
</video>
<script>
function myFunction() {
  alert("Browser has loaded the current frame");
}
</script>
</body> 
</html>