禁止遮罩层以下屏幕滑动

原帖地址:https://www.cnblogs.com/gaohui/p/5819777.html

其他方法参考链接

下面是最适合的

$(".zhezhao").on('touchmove',function(e){
        e.preventDefault();  //阻止默认行为
    })

只需要给遮罩这一层添加 禁止触摸就可以了,

猜你喜欢

转载自blog.csdn.net/sym134/article/details/80758450