码迷,mamicode.com
首页 > 其他好文 > 详细

Video 对象方法 canPlayType()

时间:2019-03-18 13:51:47      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:播放   fun   port   eve   meta   cli   ecs   oct   control   

 

<!DOCTYPE html> 
<html>
<head> 
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title> 
</head>
<body> 

<p>我的浏览器可以播放 MP4 视频吗?<span>
<button onclick="supportType(event,‘video/mp4‘,‘avc1.42E01E, mp4a.40.2‘)" type="button">测试</button>
</span></p>

<p>我的浏览器可以播放 OGG 视频吗?<span>
<button onclick="supportType(event,‘video/ogg‘,‘theora, vorbis‘)" type="button">测试</button>
</span></p>

<script> 
function supportType(e,vidType,codType)
{ 
  myVid=document.createElement(video);
  isSupp=myVid.canPlayType(vidType+;codecs="+codType+");
  if (isSupp=="")
  {
    isSupp="No";
  }
  e.target.parentNode.innerHTML="Answer: " + isSupp;
} 
</script> 
</body> 
</html>

 

Video 对象方法 canPlayType()

标签:播放   fun   port   eve   meta   cli   ecs   oct   control   

原文地址:https://www.cnblogs.com/sea-stream/p/10551469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!