wx.createSelectorQuery().selectViewpo
const query = wx.createSelectorQuery()
query.select(id).boundingClientRect()
setTimeout(function () {
query.selectViewport().scrollOffset()
query.exec(function (res) {
console.log(res)
that.setData({
scrollTopPlay: res[1].scrollTop,
bottomHeight: res[0].height
});
})
}, 400)
获取到的scrollTop的值一直是0
有没有大神指点一下啊
2 回复
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)