JavaScript–Apple设备检测示例代码 |
这里提供一些javascript检测代码,用于检测iPhone、iPod、iPad设备 。 复制代码 代码如下: // Apple detection object var Apple = {}; Apple.UA = navigator.userAgent; Apple.Device = false; Apple.Types = ["iPhone", "iPod", "iPad"]; for (var d = 0; d < Apple.Types.length; d++) { // is this an Apple device? |