我正在使用 html5 音频,但这不适用于 Internet Explorer。
<audio id="beep-voice" controls autoplay style="opacity:0"></audio>
请建议我解决方案。谢谢
我正在使用 html5 音频,但这不适用于 Internet Explorer。
<audio id="beep-voice" controls autoplay style="opacity:0"></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>