HTML
HTML <source> 元素
带有两个源文件的音频播放器。浏览器需要选择它所支持的源文件(如果都支持则任选一个)
源代码:
点击运行 »
<audio controls> <source src="/examples/horse.ogg" type="audio/ogg"> <source src="/examples/horse.mp3" type="audio/mpeg"> 您的浏览器不支持 audio 元素。 </audio>
运行结果:
点击运行 »