【问题标题】:html5 audio player is not working for internet explorerhtml5 音频播放器不适用于 Internet Explorer
【发布时间】:2013-10-28 21:54:49
【问题描述】:

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

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

请建议我解决方案。 谢谢

【问题讨论】:

    标签: html internet-explorer html5-audio


    【解决方案1】:

    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> 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-11-27
      • 1970-01-01
      • 2019-04-04
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多