html5音频播放器不适用于Internet Explorer

时间:2013-10-28 13:26:36

标签: html5 internet-explorer html5-audio

我正在使用html5音频,但这不适用于Internet Explorer。

<audio id="beep-voice" controls autoplay style="opacity:0"></audio> 

请建议我解决方案。 感谢

1 个答案:

答案 0 :(得分:2)

IE9 +支持audio-tag。有关更多信息,请访问此站点: 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>