function bodyScroll(){
event.preventDefault();//阻止默認(rèn)事件
}
//綁定touchmove事件
document.addEventListener('touchmove', bodyScroll, false);
//解除綁定touchmove事件
document.removeEventListener('touchmove', bodyScroll, false);
function bodyScroll(){
event.preventDefault();//阻止默認(rèn)事件
}
//綁定touchmove事件
document.addEventListener('touchmove', bodyScroll, false);
//解除綁定touchmove事件
document.removeEventListener('touchmove', bodyScroll, false);