微信公众号 禁止下拉
methods: {
    noPullDown:function(selector){
       //禁止页面拖动
     document.querySelector('body').addEventListener('touchmove', function (e) {
          console.log('禁止下拉出现网页来源信息')
          if(!selector) {
             e.preventDefault()
          } else {
             // 如果需要部分区域可以滑动,则需传入需要滑动地方的类名
     if (!document.querySelector(selector).contains(e.target)) {
                e.preventDefault()
             }
          }
       }, { passive: false })
    },
}
mounted(){
    this.noPullDown()
}


Tong_sunshine
62 声望10 粉丝

看看看! 再看把你眼珠子抠掉!


引用和评论

0 条评论