HTML5播放器在SharePoint 2007中,webpart无法在IE

时间:2015-05-26 19:44:56

标签: html5 internet-explorer audio sharepoint-2007 html5-audio

我正在使用HTML5音频标记在SharePoint 2007 webpart中创建播放器。它在Chrome和Firefox中都运行良好,但它根本不适用于IE(11)。以下是我正在使用的代码。

<div>   
    <img src="bgImageforPlayer.jpg" width="300" height="136">
</div>
<div>
    <audio controls>
        <source src="music.mp3" type="audio/mpeg">
        <source src="music.ogg" type="audio/ogg">
        <source src="music.wav" type="audio/x-wav">   
    </audio>
</div>

0 个答案:

没有答案