案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h3>演示如何访问 VIDEO 元素</h3>
6
7
<video id="myVideo" width="320" height="240" controls>
8
  <source src="/img/movie.mp4" type="video/mp4">
9
  <source src="/img/movie.ogg" type="video/ogg">
10
  Your browser does not support the video tag.
11
</video>
12
13
<p>请点击按钮来获得以秒计的视频时长。</p>
14
15
<p id="demo"></p>
16
17
<button onclick="myFunction()">试一下</button>
18
19
<script>
20
function myFunction()
21
{
22
var x = document.getElementById("myVideo").duration;
23
document.getElementById("demo").innerHTML = x;
24
}
25
</script>
26
27
</body>
28
</html>
29