小程序如何获取页面高度 小程序获取导航栏高度

主机教程 建站分享 2年前 (2022-12-03) 161次浏览

文章摘要:小程序如何获取页面高度 小程序获取导航栏高度

小程序获取页面高度的代码示例: onReady: function () { / […]

小程序获取页面高度的代码示例:

onReady: function () {

//动态获取高度

this.autoHeight();

},

//动态获取高度

autoHeight:function(){

var that = this;

var query = wx.createSelectorQuery();

query.select('.container').boundingClientRect(function(rect) {

console.log("----w" + rect.height)

that.setData({

windowHeight: rect.height ,//获取页面高度

})

}).exec();

},


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:小程序如何获取页面高度 小程序获取导航栏高度
文章链接:http://www.7966.org/post/12903.html
转载请注明出处

喜欢 (0)