動的に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.
。
どうすればこの問題を解決できますか?