JS - 判断用户的浏览设备是移动端还是pc端

网站页面中需要根据用户的访问设备的不同来显示不同的页面样式,主要是判断移动设备还是电脑浏览器访问的。

  • 用电脑上的浏览器,android设备,iphone,ipad均做过测试,此代码可行,各设备判断均正确。

  • 判断是否微信浏览器中打开

function is_weixn(){  
    var ua = navigator.userAgent.toLowerCase();  
    if(ua.match(/MicroMessenger/i)=="micromessenger") {  
        return true;  
    } else {  
        return false;  
    }  
}

你可能感兴趣的:(JS - 判断用户的浏览设备是移动端还是pc端)