Fork me on GitHub

判断手机系统的类型

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");
}

 

posted @ 2018-10-30 13:54  森海轮回  阅读(115)  评论(0编辑  收藏  举报