我有这个解决方案在 chrome 中工作:
但萤火虫控制台说:
HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://path/to/sound.mp3 failed.
有没有办法在这个脚本中定义一个 ogg 和 mp3 文件(假设这将使声音在 firefox 中播放):
<script>
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'http://path.com/to/sound.mp3');
$('#play_it').click(function() {
audioElement.play();
});
});
</script>
谢谢你。
更新
我尝试在 mp3 参考下方添加对文件的另一个参考并且它有效,但不确定这是否是最佳解决方案:
<script>
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'http://path.com/to/sound.mp3');
audioElement.setAttribute('src', 'http://path.com/to/sound.ogg');
$('#play_it').click(function() {
audioElement.play();
});
});
</script>