function bodyScroll(){
event.preventDefault();//阻止默认事件
}
//绑定touchmove事件
document.addEventListener('touchmove', bodyScroll, false);
//解除绑定touchmove事件
document.removeEventListener('touchmove', bodyScroll, false);
function bodyScroll(){
event.preventDefault();//阻止默认事件
}
//绑定touchmove事件
document.addEventListener('touchmove', bodyScroll, false);
//解除绑定touchmove事件
document.removeEventListener('touchmove', bodyScroll, false);