当前位置: 代码迷 >> JavaScript >> 判断现阶段的用户是在用PC浏览器还是手机浏览器还是平板电脑浏览器
  详细解决方案

判断现阶段的用户是在用PC浏览器还是手机浏览器还是平板电脑浏览器

热度:1232   发布时间:2013-03-10 09:38:39.0
判断当前的用户是在用PC浏览器还是手机浏览器还是平板电脑浏览器
要写一段JS判断当前的用户是在用PC浏览器还是手机浏览器还是平板电脑浏览器,,怎么写好一些
要实现网页在电脑上    有个东西显示A样式
网页在平板上看,显示B样式
网页在手机上看,显示C样式
现在样式做好了!!只需要如何用JS判断是用PC浏览器还是手机浏览器还是平板电脑浏览器

------解决方案--------------------
userAgent
------解决方案--------------------
 function getPgjs(){
        var agent = navigator.userAgent.toLowerCase();
        var res = agent.match(/android/);
        if(res == "android")
            return res;
        res = agent.match(/iphone/);
        if(res == "iphone")
            return "ios";
        res = agent.match(/ipad/);
        if(res == "ipad")
            return "ios";
        res = agent.match(/windows/);
        if(res == "windows")
            return "wp";
        return "pc";
    }
------解决方案--------------------
引用:
function getPgjs(){
        var agent = navigator.userAgent.toLowerCase();
        var res = agent.match(/android/);
        if(res == "android")
            return res;
        res……

我勒个去,android也有平板,也有手机~
------解决方案--------------------
不如判断客户屏幕分辨率
  相关解决方案