JQ 判断 浏览器打开的设备类型

<script>
$(document).ready(function(){
var ua = navigator.userAgent;
var ipad = ua.match(/(iPad).*OS\s([\d_]+)/),
isIphone = ua.match(/(iPhone\sOS)\s([\d_]+)/),
isAndroid = ua.match(/(Android)\s+([\d.]+)/);
if(isIphone!=null || isAndroid!=null || ipad!=null){
//isIphone!=null 打开设备为Iphone
 } }); </script>
上一篇:linux文件管理 -> 系统压缩打包


下一篇:LA 3027 合作网络