码迷,mamicode.com
首页 > Web开发 > 详细

html5 可以讓使用者輸入url網址 ,去play影片

时间:2014-11-19 17:59:46      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   使用   sp   on   cti   bs   

<html>
  <head>
    <title>Simple Video Example</title>      
     <script>

         function playVideo(e) {
           var video = document.getElementById(‘video1‘);      //video element
           var input = document.getElementById(‘videoFile‘);   //text box                   
           if (input.value != video.src) {
              video.src = input.value;
           }
           video.load();
           video.play();         
         }
     </script>
</head>
<body>
<video id="video1" width="640" height="360" controls >HTML5 video is not supported</video><br />
<input type="text" id="videoFile" size="60" placeholder="Enter video file URL here"/>
  <button onclick="playVideo(this);">Play</button>
</body>
</html>  

html5 可以讓使用者輸入url網址 ,去play影片

标签:style   io   ar   color   使用   sp   on   cti   bs   

原文地址:http://www.cnblogs.com/mysterywho/p/4108406.html

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