【小程序】小程序获取view 距顶高度 然后 wx.pageScrollTo 但是距离不对
query.select('.comment-list-wrp').boundingClientRect()query.exec( (res)=> {
//res就是 所有标签为myText的元素的信息 的数组
const windowH = wx.getSystemInfoSync().windowHeight
const ratio = wx.getSystemInfoSync().pixelRatio
console.log(windowH, ratio)
console.log(res);
//取高度
console.log(res[0].height);
this.setData({
commentTop: res[0].top
})
})
但是让元素滚动scrollTop为 设置的commentTop 但是距离不对是什么情况呢
回答
以上是 【小程序】小程序获取view 距顶高度 然后 wx.pageScrollTo 但是距离不对 的全部内容, 来源链接: utcz.com/a/82013.html