我刚刚创建了 html 程序来使用 javascript 播放 Mp3 文件。如果程序从谷歌浏览器运行,它工作正常,但它不能与 firefox(version24,OS:ubuntu)一起使用。它会在控制台中输出一些错误,例如"HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://localhost/phpsound/sound_file.mp3 failed"
. 我是否需要为 Firefox 安装任何插件来解决此问题。请帮我解决这个问题。
html代码:
<html>
<head>
<title></title>
<meta http-equiv="content-type" content="audio/mpeg">
<script language="JavaScript" type="text/javascript">
function play_sound()
{
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'sound_file.mp3');
audioElement.setAttribute('autoplay', 'autoplay');
audioElement.load();
audioElement.play();
}
</script>
<body>
<input type="button" name="btnOk" id="btnOk" value=" OK " onClick="play_sound();"/>
</body>
</html>