js判断是否是移动端自动跳转到wap页面代码

Posted 文__武

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断是否是移动端自动跳转到wap页面代码相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">  
        function is_mobile(){   
          var regex_match=/(nokia|iphone|android|motorola|^mot-|softbank|foma|docomo|kddi|up.browser|up.link|htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte-|longcos|pantech|gionee|^sie-|portalmmm|jigs browser|hiptop|^benq|haier|^lct|operas*mobi|opera*mini|320x320|240x320|176x220)/i;   
          var u=navigator.userAgent;   
          if (null==u){   
            return true;   
          }   
          var result = regex_match.exec(u);  
          if(null==result){   
            return false  
          }   
          else{   
            return true  
          }   
        }   
        if(is_mobile()){   
          //document.location.href=‘wap/‘;
        }else{  
          //document.location.href=‘pc/‘;
        }  
    </script> 

 

以上是关于js判断是否是移动端自动跳转到wap页面代码的主要内容,如果未能解决你的问题,请参考以下文章

PC端访问WAP页面时自动跳转到PC版网页需要啥代码?

js判断到移动端PC端

利用JS实现手机访问PC网址自动跳转到wap网站

判断网站是否手机访问并跳转到指定的wap网站

前端移动端rem页面怎么写js代码怎么写

网页代码 JS代码 检测手机或是Pad设备 是不是安装某软件 之后做相应的跳转