获取打开微信小程序设备的屏幕尺寸

获取尺寸js

Page({

data:{

windowHeight: '',

windowWidth: '',

}


onLoad: function (options) {

    wx.getSystemInfo({
      success: function (res) {
        console.log(res);
        // 屏幕宽度、高度
        console.log('height=' + res.windowHeight);
        console.log('width=' + res.windowWidth);
        // 高度,宽度 单位为px
        that.setData({

        windowHeight: res.windowHeight,

       windowWidth: res.windowWidth

        })
      }
    })
  },

})


附:这样即可获得打开该小程序设备的屏幕尺寸

你可能感兴趣的:(微信小程序)