1、通过wx.getSystemInfoSync()可获取的值:
// 在 iPhone6 下运行: var systemInfo = wx.getSystemInfoSync(); console.log(systemInfo.windowWidth); // 输出 375(单位 px) // 在 iPhone6 Plus 下: var systemInfo = wx.getSystemInfoSync(); console.log(systemInfo.windowWidth); // 输出 414 (单位 px)2、px与rpx之间转换的公式:px = rpx / 750 * wx.getSystemInfoSync().windowWidth;