如何动态获得小程序页面的高度
使用onReady事件动态获得小程序页面的高度
实现代码以下:
onReady:function(){//动态获得高度
this.autoHeight();
},
//动态获得高度
autoHeight:function(){
varthat=this;
varquery=wx.createSelectorQuery();
query.select('.container').boundingClientRect(function(rect){
console.log("----w"+rect.height)
that.setData({
windowHeight:rect.height,//获得页面高度
})
}).exec();
},
本文来源:https://www.yuntue.com/post/79912.html | 云服务器网,转载请注明出处!