首页 > 移动平台 > 详细

判断手机系统的类型

时间:2018-10-30 14:38:14      阅读:242      评论:0      收藏:0      [点我收藏+]

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

 

判断手机系统的类型

原文:https://www.cnblogs.com/beimingbingpo/p/9876449.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!