«

微信小程序如何获取某个元素的高度?

emer 发布于 2018-8-21 09:32   2698 次阅读     



<view class="usermotto" style="height:213px;" id='mjltest'/>

//创建节点选择器
var query = wx.createSelectorQuery();
//选择id
query.select('#mjltest').boundingClientRect()
query.exec(function (res) {
  //res就是 所有标签为mjltest的元素的信息 的数组
  console.log(res);
  //取高度
  console.log(res[0].height);
})