微信小程序自动滚动到底部

1.在需要滚动的view外层id

微信小程序自动滚动到底部_第1张图片

 2.data里边声明函数

3.滚动方法函数

    let that = this;
wx.createSelectorQuery().select('#communication').boundingClientRect(function (rect) {
  wx.pageScrollTo({
    scrollTop: rect.height,
    duration: 100 // 滑动速度
  })
  that.setData({
    scrollTop: rect.height - that.data.scrollTop
  });
}).exec();

 

你可能感兴趣的:(微信小程序,小程序)