根据html5test.com
,chrome 不支持 html5mp4
视频(请参阅以下链接)。
http://html5test.com/compare/feature/video-mpeg4.html
但是,在这个测试页面中,通过将 body 设置如下,可以成功播放 mp4 视频:
<!DOCTYPE html>
<html>
<body>
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</body>
</html>
我怎样才能正确解释这一点?