const query = wx.createSelectorQuery().in(this)
query.select('.test').boundingClientRect((rect) => {
console.log(rect)
}).exec()
const query = wx.createSelectorQuery().in(this) // 这一句是最重要的,要用.in(this),this传入的是自定义组件的实例。否则获取到的rect值为null
const query = wx.createSelectorQuery();
const that = this;
//选择id
query.select(id).boundingClientRect(function (rect) {
console.log(rect);// 这里包含内容 的宽高
})exec();
评论 (0)