source标签作用是什么?

html source标签 语法

作用:为媒介元素(比如 <video> 和 <audio>)定义媒介资源。

说明:<source> 标签允许您规定可替换的视频/音频文件供浏览器根据它对媒体类型或者编解码器的支持进行选择。

注释:<source> 标签是 HTML 5 中的新标签。

html source标签 示例

<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="http://www.php.cn/i/horse.ogg" type="audio/ogg">
<source src="http://www.php.cn/i/horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
登录后复制


以上就是source标签作用是什么的详细内容,更多请关注Work网其它相关文章!

08-25 20:29