判断手机系统的类型

Posted beimingbingpo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断手机系统的类型相关的知识,希望对你有一定的参考价值。

https://www.cnblogs.com/boothsun/p/5463468.html

//android手机打开相机兼容性写法

if (/(iPhone|iPad|iPod|ios)/i.test(navigator.userAgent)) { 
  //ios
} else if (/(Android)/i.test(navigator.userAgent)) { 
  //android
}

 

if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) { 
$("#file_id").removeAttr("capture");
} else if (/(Android)/i.test(navigator.userAgent)) { 
$("#file_id").attr("capture","camera");
}

 

以上是关于判断手机系统的类型的主要内容,如果未能解决你的问题,请参考以下文章

JS判断手机当前的系统类型

使用JS判断客户端浏览器操作系统类型

JS 判断手机操作系统代码

通过userAgent判断手机浏览器类型

判断是手机还是电脑访问的代码

判断是手机还是电脑访问的代码