标签:需要 his selector 小程序 set efs style console sel
//vue获取组件距离顶部距离
console.log(‘距离顶部高度‘, this.$refs.aa.$el.offsetTop)
//uniapp 在h5页面可以使用vue的获取高度 但是在小程序端需要使用下面方法 同时适合于h5页面
const query = uni.createSelectorQuery().in(this); query.select("组件名字").boundingClientRect(data => { this.taboffsetTop = data.top console.log(data.top) }).exec();
标签:需要 his selector 小程序 set efs style console sel
原文地址:https://www.cnblogs.com/jie98/p/14871430.html