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

<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>  

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。