单击Firefox中的按钮时,Firefox浏览器不会在jquery中播放我的.mp3文件?

时间:2013-07-30 08:37:50

标签: jquery firefox audio

我尝试播放声音文件时单击按钮,但它在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(); }); });

提前致谢

0 个答案:

没有答案