1

我在我的网站 www.missduniya.com 添加了一个 html5 音频标签来播放背景音乐,它适用于所有主流浏览器,但不适用于 IE。

这是我的代码

<audio controls="CONTROLS" autoplay="autoplay" style="display:none;">
<source src="destination.ogg" type="audio/ogg">
<source src="destination.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>

请提供解决方案帮助我:)谢谢

4

1 回答 1

5

我认为你的问题是你没有使用 IE9。

Internet Explorer 6、7 和 8 不完全支持 HTML5

查看下表: http: //www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5_72/

主要是这个:

Internet Explorer 6、7 和 8 在此处输入图像描述

于 2012-03-19T11:53:31.550 回答