禁止body页面滚动

document.body.style.overflow = 'hidden'
document.body.addEventListener('touchstart', function(e) { e.preventDefault() }, false)

恢复页面滚动

document.body.style.overflow = 'scroll'
document.removeEventListener('touchstart', function(e) { e.preventDefault() }, false)

可以很好的解决用户体验问题

Logo

前往低代码交流专区

更多推荐