HTML <audio> 标签


示例

播放声音文件:

<audio controls>
  <source src="horse.ogg" type="audio/ogg">
  <source src="horse.mp3" type="audio/mpeg">
  Your browser does not support the audio tag.
</audio>
亲自试一试 »

定义和用法

这个<audio>标签用于在文档中嵌入声音内容,例如音乐或其他音频流。

这个<audio>标签包含一个或多个<source>具有不同音频源的标签。浏览器将选择它支持的第一个源。

之间的文字<audio></audio>标签只会在不支持的浏览器中显示<audio>元素。

HTML 支持三种音频格式:MP3、WAV 和 OGG。

音频格式和浏览器支持

Browser MP3 WAV OGG
Edge / IE YES YES* YES*
Chrome YES YES YES
Firefox YES YES YES
Safari YES YES NO
Opera YES YES YES

*来自边缘 79


提示和注释

提示:对于视频文件,请查看 <video>标签。



浏览器支持

表中的数字指定完全支持该元素的第一个浏览器版本。

Element
<audio> 4.0 9.0 3.5 4.0 11.5

属性

Attribute Value Description
autoplay autoplay Specifies that the audio will start playing as soon as it is ready
controls controls Specifies that audio controls should be displayed (such as a play/pause button etc)
loop loop Specifies that the audio will start over again, every time it is finished
muted muted Specifies that the audio output should be muted
preload auto
metadata
none
Specifies if and how the author thinks the audio should be loaded when the page loads
src URL Specifies the URL of the audio file

全局属性

这个<audio>标签还支持HTML 中的全局属性


事件属性

这个<audio>标签还支持HTML 中的事件属性


相关页面

HTML DOM 参考:HTML 音频/视频 DOM 参考


默认 CSS 设置

没有任何。