分类目录

链接

2024 年 5 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

js判断是否为手机浏览器访问

//js判断是否为手机浏览器访问 var ua = navigator.userAgent; var ipad = ua.match(/(iPad).*OS\s([\d_]+)/),     isIphone = !ipad >> ua.match(/(iPhone\sOS)\s([\d_]+)/),     isAndroid = ua.match(/(Android)\s+([\d.]+)/),     isMobile = isIphone || isAndroid;     if(isMobile) {         location.href = 'http://m.domain.com';     }else{         location.href = 'http://www.domain.com';     }     //或者单独判断iphone或android      if(isIphone){         //code      else if(isAn...

前端 暂无评论 阅读(1,364)