你如何检测PhoneGap中的iPhone5?

时间:2013-01-15 23:43:28

标签: iphone cordova

有没有一种简单的方法来检测我的应用是否在iPhone5上运行?

2 个答案:

答案 0 :(得分:2)

您可能希望使用PhoneGap

中的build.meodel部分

http://docs.phonegap.com/en/2.3.0/cordova_device_device.model.md.html#device.model

答案 1 :(得分:1)

为什么是,有......

function isIphone5() {
  return device.name.match(/iPhone/i) != null && 
    window.innerWidth == 568 || window.innerHeight == 568;
}