如何在新标签中播放视频?

时间:2013-12-19 06:09:55

标签: html5 video attributes

我是网络开发的初学者,我的网页上有视频文件。

我想在新标签中播放该视频。

我将target =“_ blank”属性添加到我的视频代码中,但它仍无效 还有其他方法可以在新标签中播放视频吗?

请帮帮我

谢谢!

1 个答案:

答案 0 :(得分:2)

你试试这种方式吗?

<!DOCTYPE html>
<html>
<body>

<h2>Click the Link to Play the Object</h2>

<a href="http://www.w3schools.com/html/intro.swf" target="_blank">Play a video file</a> 

</body>
</html>

或者您可以使用以下代码创建空白页:

<!DOCTYPE html>
<html>
<body>    
    <video width="90%" height="90%" controls>
      <source src="movie.mp4" type="video/mp4">
      <source src="movie.ogg" type="video/ogg">
      Your browser does not support the video tag.
    </video>
</body>
</html>

然后链接到该页面:

<a href="video_page" target_="blank">See the video</a>