有没有一种方法可以检测当前用户是否正在使用jQuery / JavaScript使用iPad?
iPad检测
通过查看userAgent属性,您应该能够检测到iPad用户:
userAgent
var is_iPad = navigator.userAgent.match(/iPad/i) != null;
iPhone / iPod检测
同样,platform用于检查iPhone或iPods等设备的属性:
platform
function is_iPhone_or_iPod(){ return navigator.platform.match(/i(Phone|Pod))/i) }