【发布时间】:2013-10-07 09:26:14
【问题描述】:
我有视频网址,我尝试播放该视频,但没有播放,已下载。如何播放视频
<div> For help <a href="https://xxx/xxx.avi" target="_blank">Watch this video</a></div>
【问题讨论】:
我有视频网址,我尝试播放该视频,但没有播放,已下载。如何播放视频
<div> For help <a href="https://xxx/xxx.avi" target="_blank">Watch this video</a></div>
【问题讨论】:
你不能在锚标签中嵌入视频,你必须使用 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找到更多信息
希望对你有帮助。
【讨论】: