<视频 src= " " > </视频> 和 <video> <source> </video>?



你能给我解释一下之间的区别吗

<video src=""> </video>

<video>
    <source src="">
</video>

通过使用<video> <source> </video>。可以添加多个源元素。多个源元素可以链接到不同的视频文件。浏览器将使用第一个识别的格式。

<video width="320" height="240" controls>
    <source src=http://example.com/foo.webm type=video/webm> 
    <source src=http://example.com/foo.ogv type=video/ogg> 
    <source src=http://example.com/foo.mp4 type=video/mp4>
    <source src=http://example.com/foo.3gp type=video/3gp>
    Your browser does not support the video tag.
</video> 

最新更新