微信小程序获取元素节点的宽高

// wxml文件中



    // 内容

data: {
    // 盒子高度
    card_height:0
},
// 设置盒子高度
getCard_height(){
 var that = this
 //创建节点选择器
 var query = wx.createSelectorQuery();
 //选择class id
  query.select('.card-user').boundingClientRect(function (rect) {
   let card_height = rect.width*2/3
   that.setData({
    card_height:card_height
   })
  }).exec();
},

onShow() {
 this.getCard_height()
},

你可能感兴趣的:(WeChat,微信小程序,小程序)