判断手机系统的类型
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"); }
以上是关于判断手机系统的类型的主要内容,如果未能解决你的问题,请参考以下文章