HTML
HTML 音频(Audio)
以下我们将使用 <audio> 标签来描述 MP3 文件(Internet Explorer、Chrome 以及 Safari 中是有效的), 同样添加了一个 OGG 类型文件(Firefox 和 Opera浏览器中有效).如果失败,它会显示一个错误文本信息
源代码:
点击运行 »
<audio controls> <source src="/examples/horse.mp3" type="audio/mpeg"> <source src="/examples/horse.ogg" type="audio/ogg"> Your browser does not support this audio format. </audio>
运行结果:
点击运行 »