移动端如何禁止body的滚动

来源:互联网 发布:a星寻路算法介绍 编辑:程序博客网 时间:2024/05/01 13:20

移动端如何禁止body的滚动

1、js原生方法:

document.addEventListener('touchmove', function(event) {event.preventDefault();}, false);

或者

function stopScroll(e){document.documentElement.style.overflow='hidden';}

2、jQuery/Zepto

$('body').on('touchmove',function(event){event.preventDefault();});
2 0
原创粉丝点击