js判断手机访问跳转到手机站

if(navigator.platform.indexOf('Win32')!=-1){ 

 window.location.href="";  //PC网站

     }else{
        window.location.href="";  //手机网站
      }

 

 

参考:http://jingyan.baidu.com/article/cdddd41c61823e53cb00e198.html

你可能感兴趣的:(js)