手机屏蔽默认滚动条滚动
2015-12-22 本文已影响0人
marker唉
function bodyScroll(){
event.preventDefault();//阻止默认事件
}
//绑定touchmove事件
document.addEventListener('touchmove', bodyScroll, false);
//解除绑定touchmove事件
document.removeEventListener('touchmove', bodyScroll, false);