我有视频网址,我尝试播放该视频,但它没有播放,而是下载了。如何播放视频
<div> For help <a href="https://xxx/xxx.avi" target="_blank">Watch this video</a></div>
答案 0 :(得分:2)
您无法在锚标记中嵌入视频,您必须使用 html5标记。
<video width="320" height="240" controls>
<source src="https://xxx/xxx.mp4" type="video/mp4">
<source src="https://xxx/xxx.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
您可以在http://www.w3.org/wiki/HTML/Elements/video
中找到更多信息希望它有所帮助。