一个phonegap技巧:如何获取移动设备的分辩率

有时候我们可能需要根据不同的设备分辩率做不同的业务处理,我们可以通过 devicePixelRatio
var ratio = window.devicePixelRatio,width = window.screen.width * ratio;

你可能感兴趣的:(移动开发,APP,PhoneGap,跨平台,jquerymobile)