1、给元素设置id
2、js获取高
getHeight:function(){
//创建节点选择器
let query = wx.createSelectorQuery();
let that = this;
//选择id
query.select('#search').boundingClientRect()
query.select('#tabs').boundingClientRect()
query.exec(function(res) {
//res就是 所有元素的信息 的数组
console.log(res);
//取高度
console.log(res[0].height,res[1].height);
that.setData({
searchHeight:res[0].height,
topHeight:res[0].height + res[1].height
})
})
},
3、结果