js判断用户的浏览器设备是移动端还是pc端

下面给出js判断处理代码移动端还是pc端,以作参考


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

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

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