我尝试播放声音文件时单击按钮,但它在Firefox中不起作用,但它在chrome中效果很好,我的html代码是:
<html> <body> <div id="container">
<button id="play">Play Music</button>
</div>
</body>
</html>
我的脚本:
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'Bullet.mp3');
$('#play').click(function() {
audioElement.play();
});
});
提前致谢