我想动态创建一个html5音频并播放它,代码如下:
function playAnotherMusic(playUrl){
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', playUrl);
audioElement.setAttribute('controls', true);
audioElement.setAttribute('preload', true);
audioElement.setAttribute('type', 'audio/mpeg');
audioElement.addEventListener("load", function() {
audioElement.play();
}, true);
console.log(playUrl);
audioElement.load();
}
然而它不起作用,萤火虫帮我“ HTTP "Content-Type" of "audio/mpeg" is not supported.
”
我怎么解决这个问题?