獲取設備信息: wx.getSystemInfo
model:手機型號
pixelRatio:設備像素比
windowWidth:窗口寬度
windowHeight:窗口高度
language:語言
version:微信版本號
btnclick:function(){ wx.getSystemInfo({ success:function(res){ console.log(res); console.log(res.model); console.log(res.pixelRatio); console.log(res.windowWidth); }; }); }