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>
————————————————
版权声明:本文为CSDN博主「theOtherSky」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_35181466/article/details/80701767