微信小程序禁止滚动-总结

  • 方法一 :给标签添加catchtouchmove="ture"



...

  • 方法二:在函数方法内调用!!!这个好方便
//实测有效!!!
aaa(){

wx.setPageStyle({
   style: {
     overflow: 'hidden'
   }
})

}

总结:
方法一不仅会禁止页面底层的滚动也会禁止弹框内子集的滚动,我的需求里子集是有滚动的所以我用的方法二

  • 完整方法逻辑
  onShowFL(){
    let ishow= !this.data.iShowFl;
    wx.setPageStyle({
      style: {
        overflow: ishow?'hidden':'unset'
      }
   })
    this.setData({iShowFl:ishow});

  },

你可能感兴趣的:(微信小程序禁止滚动-总结)