当前位置:   article > 正文

javaScript使用navigator.userAgent.toLowerCase()判断移动端类型

navigator.useragent.tolowercase()一共有哪些
var ua   = navigator.userAgent.toLowerCase();   
if(ua.match(/android/i)) == "android")  
{  
    alert("android");  
}  
if(ua.match(/iPhone/i)) == "iPhone")  
{  
    alert("iPhone");  
}  
if(ua.match(/iPad/i)) == "iPad")  
{  
    alert("iPad");  
}  
if(ua.match(/weibo/i) == "weibo"){  
    alert("weibo");  
}
if(ua.indexOf('qq/')!= -1){  
    alert("qq");  
}
if(ua.match(/MicroMessenger/i)=="micromessenger"){  
    alert("微信");  
}

 

转载于:https://www.cnblogs.com/kelly07/p/8393270.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/101863
推荐阅读
相关标签
  

闽ICP备14008679号