this.create = function(){
//添加背景音乐
}
无限循环背景音乐
function BjMusic(mp3snd){
var audio=document.createElement("audio");
audio.setAttribute("src",mp3snd);
audio.setAttribute("autoplay","autoplay");
audio.setAttribute("loop","loop");
document.body.appendChild(audio);
}