分类

链接

2025 年 6 月
 1
2345678
9101112131415
16171819202122
23242526272829
30  

近期文章

热门标签

新人福利,免费薅羊毛

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,456)