<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)
})
})
1.在app动态获取页面头部导航高度
2.定义头部组件
组件js
组件json
组件wxml
组件wxss自己写
3.需要引入的页面
(1).修改当前页面头部,自定义页面头图,引入组件
引入页面json
(2).页面js
(3).页面中使用组件,直接插入页面就可以了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)