解决移动端弹窗下页面滚动问题

document.body.addEventListener('touchmove', fun, {passive: false})
document.body.removeEventListener('touchmove', fun)
function fun(e){
  e.stopPropagation();
  e.preventDefault();
}
原文地址:https://www.cnblogs.com/cuishuangshuang/p/13516772.html