我的<audio>元素无法在Mountain Lion上的Safari 6.1中播放</audio>

时间:2014-02-21 09:30:14

标签: macos html5-audio

代码非常简单,它在Maveric,iOS,Android上的所有浏览器上运行得非常好,但不知何故它在Mountain Lion的Safari 6.1中无法播放。为了让它发挥作用,我有什么遗漏吗?

在我的HTML中:

<audio controls id="answer1">
   <source src="audio/answer1.mp3" type="audio/mp3">
   <source src="audio/answer1.wav" type="audio/wav">
   <source src="audio/answer.ogg" type="audio/ogg">
</audio>

在我的.js:

var answer1 = document.getElementById('answer1');

jQuery('#game-launch-btn').click( function() {
    answer1.play();
});

非常适合任何提示或提示:)祝你有愉快的一天。

0 个答案:

没有答案