小编典典

使用jQuery检测iPad用户?

javascript

有没有一种方法可以检测当前用户是否正在使用jQuery / JavaScript使用iPad?


阅读 311

收藏
2020-05-01

共1个答案

小编典典

iPad检测

通过查看userAgent属性,您应该能够检测到iPad用户:

var is_iPad = navigator.userAgent.match(/iPad/i) != null;

iPhone / iPod检测

同样,platform用于检查iPhone或iPods等设备的属性:

function is_iPhone_or_iPod(){
     return navigator.platform.match(/i(Phone|Pod))/i)
}
2020-05-01