0

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

4

2 回答 2

2

您可能想使用 PhoneGap 的内置 device.model 部分

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

于 2013-01-16T02:19:39.797 回答
1

为什么是的,有...

function isIphone5() {
  return device.name.match(/iPhone/i) != null && 
    window.innerWidth == 568 || window.innerHeight == 568;
}
于 2013-01-15T23:43:28.260 回答