微信小程序获取某个元素的高度宽度的示例代码

js页面的代码://创建节点选择器var query = wx.createSelectorQuery();//选择idvar that = this;query.select('.every').boundingClientRect(function (rect) {// console.log(rect.width)that.setData({height: rect.width + 'px'})}).exec(); wxml页面代码如下:view class='every' style='heigh

js页面的代码:
//创建节点选择器
var query = wx.createSelectorQuery();
//选择id
var that = this;
query.select('.every').boundingClientRect(function (rect) {
// console.log(rect.width)
that.setData({
height: rect.width + 'px'
})
}).exec();
 
wxml页面代码如下:
<view class='every' style='height:{{height}}'></view>

 

本文标题为:微信小程序获取某个元素的高度宽度的示例代码

基础教程推荐