【发布时间】:2013-10-28 21:54:49
【问题描述】:
我正在使用 html5 音频,但这不适用于 Internet Explorer。
<audio id="beep-voice" controls autoplay style="opacity:0"></audio>
请建议我解决方案。 谢谢
【问题讨论】:
标签: html internet-explorer html5-audio
我正在使用 html5 音频,但这不适用于 Internet Explorer。
<audio id="beep-voice" controls autoplay style="opacity:0"></audio>
请建议我解决方案。 谢谢
【问题讨论】:
标签: html internet-explorer html5-audio
IE9+ 支持音频标签。有关更多信息,请参阅此网站: http://www.w3schools.com/html/html5_audio.asp
您没有添加任何音频。试试下面的代码并更改源代码:
<audio id="beep-voice" controls autoplay style="opacity:0">
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
【讨论】: