弹窗弹出后禁止背景移动
https://blog.csdn.net/qq_14993375/article/details/79895743
//取消当前弹窗touchmove事件的默认行为
$(".pop").on("touchmove", function (e) {
e.preventDefault();
}, false);
https://blog.csdn.net/qq_14993375/article/details/79895743
//取消当前弹窗touchmove事件的默认行为
$(".pop").on("touchmove", function (e) {
e.preventDefault();
}, false);