XAMPP 未显示 MP4 文件

XAMPP not Displaying MP4 file

我在 HTML 中有此代码:

<a href="test.mp4" type="video/mp4">test</a>

但是,它是下载而不是播放。当我在没有 XAMPP 的桌面上尝试时,它起作用了。有什么办法可以做到这一点?谢谢! (是的,我的浏览器确实支持 mp4 文件)

欢迎使用 Whosebug!

您必须使用 html5 <video> 标签嵌入您的视频,如下所示:

<video width="320" height="240" controls>
  <source src="test.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>

阅读更多相关内容here

你可以用这个代替锚标签

<video width="400" controls>
  <source src="test.mp4" type="video/mp4">
  Your browser does not support HTML video.
</video>