0
我試圖在Firefox或Chrome瀏覽器以外的其他瀏覽器中使用HTML5音頻標記,但似乎無法正常工作。任何幫助將不勝感激。 該控件在Firefox中顯示,但似乎無法播放該文件。遇到音頻後備問題
這裏是我的代碼:
<audio id="audioplayer" preload controls loop style="width:424px;">
<source src="02-24-13 Ed Randall with Art Shamsky.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<script type="text/javascript">
var audioTag = document.createElement('audio');
if (!(!!(audioTag.canPlayType) && ("no" != audioTag.canPlayType("audio/mpeg")) && ("" != audioTag.canPlayType("audio/mpeg")))) {
AudioPlayer.embed("audioplayer", {soundFile: "02-24-13 Ed Randall with Art Shamsky.mp3"});
}
</script>
「似乎不起作用」是什麼意思?你得到什麼錯誤?另外,我建議不要在文件名中使用空格。 – j08691 2013-03-08 18:28:12
爲問題添加更多信息,這將有助於人們解決問題,因此,解決方案可以更具體。 – axierjhtjz 2013-03-08 18:32:01
MP3在谷歌瀏覽器和Internet Explorer中似乎表現良好,但在Firefox中卻沒有。我應該怎麼做才能在Firefox中使用它? – user2149441 2013-03-08 18:50:58