手机屏蔽默认滚动条滚动

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

你可能感兴趣的:(手机屏蔽默认滚动条滚动)