项目中引入vant-weapp van-popup组件,想获取他的高度,使用
wx.createSelectorQuery().query.in(this).select('#contactPopup').boundingClientRect(rect => {
// popupH = rect.height;
console.log(rect, 'rect')
}).exec();
拿到的一直是0,这个height要怎么获取,是不是因为#shadow-root影响的
.exec((res) => {
console.log('res', res);
const result = res[0].node;
result .width = res[0].width;
result .height = res[0].height;
});
请移步vant相关社区