点击事件触发以下方法wx.createSelectorQuery().select('#page').boundingClientRect(rect => { wx.pageScrollTo({ duration: 500, // 动画时长 scrollTop: re._微信小程序textarea下滑到底">
赞
踩
在需要滚动的页面根节点定义一个id="page"
- <view id="page">
- <text>需要滚到的页面</text>
- </view>
点击事件触发以下方法
- wx.createSelectorQuery().select('#page').boundingClientRect(rect => {
- wx.pageScrollTo({
- duration: 500, // 动画时长
- scrollTop: rect.height
- })
- }).exec()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。