音频格式

当前,audio 元素支持三种音频格式:

 

Firefox、Opera 以及 Chrome 浏览器:Ogg格式。

Safari 浏览器:MP3格式 或 Wav格式。

audio 元素允许多个 source 元素。source 元素可以链接不同的音频文件。浏览器将使用第一个可识别的格式。

例如:

<audio controls="controls">
  <source src="song.ogg" type="audio/ogg">
  <source src="song.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>

Internet Explorer

Internet Explorer 8 不支持 audio 元素。在 IE 9 中,将提供对 audio 元素的支持。

 

 

 

 

 

 

 

 

 

posted on 2014-02-27 14:44  N&#179;  阅读(262)  评论(0编辑  收藏  举报