首先给你的xml对象一个id:
<view class="usermotto" style="height:213px" id='mjltest'/>然后在js里,用一个SelectorQuery来选择对应id的节点(注意id前面要加一个#号),就可以获取对应节点的属性,包括高度。
//创建节点选择器var query = wx.createSelectorQuery()
query.select('#mjltest').boundingClientRect()
query.exec(function (res) {
//res就是 所有标签为mjltest的元素的信息 的数组
console.log(res)
//取高度
console.log(res[0].height)
})
因为对小程序父标签和子标签的布局还不是特别了解,不像ios,父标签固定,子标签通过mansory去布局距离父的底部多少即可。小程序的我能想到的就是动态算出每一个标签的高度,然后总高度减掉就是想得到的子标签的高度了。如果有哪位大神可以指导一二,感激不尽~~~
<view id='viewID'>
<view id="scriptID">
var query = wx.createSelectorQuery()
//选择id
query.select('#numID').boundingClientRect()
query.select('#scriptID').boundingClientRect()
query.exec(function (res) {
//res就是 所有标签为mjltest的元素的信息 的数组
console.log('所有:',res)
//取高度
that.setData({
storyHeight:that.data.detailHeight -(res[0].height+res[1].height)
})
})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)