<div id="div1" style="position: absolute; top: 0px; left: 0px;">
<video width="320" height="240" controls="controls">
<source src="C:\Users\Trent Terrill\Desktop\Website Stuff\Media\video.ogg" type="video/ogg"/>
Your browser does not support the video tag.
</video>
</div>
它不适用于任何浏览器。
答案 0 :(得分:1)
首先,......
controls属性是一个布尔属性。如果存在,则表示作者未提供脚本控制器,并希望用户代理提供自己的控件集。
(见http://www.w3.org/TR/html5/video.html#attr-media-controls)
第二......
使用“Windows风格”路径,如
src="C:\Users\Trent Terrill\Desktop\Website Stuff\Media\video.ogg"
可能是浏览器的问题。尝试设置本地网络服务器(例如Apache)并将路径转换为URL。