针对弹出的浮层的 touchmove事件,添加阻止浏览器默认行为。
touchmove
$('.mask-wrapper').on('touchmove', function (event) { // 监听滚动事件 event.preventDefault(); // 禁止浏览器默认行为 })