这段代码有什么问题吗?加载网页时音频文件不播放。
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src','content/audio/tune.mp3');
audioElement.setAttribute('autoplay', 'autoplay');
//audioElement.load()
$.get();
audioElement.addEventListener("load", function() {
audioElement.play();
}, true);
audioElement.play();
});