移动端js: 禁止弹出层下方内容滑动和允许弹出层下方内容滑动

禁止滑动

  document.body.addEventListener('touchmove', function (e) {
            e.preventDefault();
        }, {passive: false});

允许滑动

  document.body.addEventListener('touchmove', function (e) {
        }, {passive: true});

你可能感兴趣的:(移动端js,js)