微信小程序获取标签高度

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>
原文链接:https://blog.csdn.net/qq_35181466/article/details/80701767

微信小程序获取标签高度

上一篇:HTML5离线化、混合式开发之ReactNative\小程序\flutter


下一篇:微信公众号怎么添加附件?比如word文档,pdf文件等