如何动态获取小程序页面的高度 小程序动态获取view的高度

主机教程 建站分享 2年前 (2022-11-04) 257次浏览

文章摘要:如何动态获取小程序页面的高度 小程序动态获取view的高度

使用onReady事件动态获取小程序页面的高度 实现代码如下: onReady: function& […]

使用onReady事件动态获取小程序页面的高度

实现代码如下:

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();

},


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

喜欢 (0)