//添加阻止默认事件的代码
$('body').bind("touchstart",function(e){
e.preventDefault();e.stopPropagation();
if ( firstTouch ) {
firstTouch = false;
// document.getElementById('bgm').play();
}else{
return;
}
});
//添加阻止默认事件的代码
$('body').bind("touchstart",function(e){
e.preventDefault();