案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html> 
2
<html> 
3
<body> 
4
5
<button onclick="checkMedCont()" type="button">检查视频是否拥有媒体控制器</button>
6
<br> 
7
<video id="video1" controls="controls">
8
  <source src="/example/html5/mov_bbb.mp4" type="video/mp4">
9
  <source src="/example/html5/mov_bbb.ogg" type="video/ogg">
10
  Your browser does not support HTML5 video.
11
</video>
12
13
<script>
14
myVid=document.getElementById("video1");
15
function checkMedCont()
16
  { 
17
  alert("Controller: " + myVid.controller);
18
  } 
19
</script> 
20
21
</body> 
22
</html>
23