Blogger Information
Blog 91
fans 0
comment 0
visits 203501
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS判断网页是否为手机打开
何澤小生的博客
Original
725 people have browsed it
//返回true表示为pc端打开,返回false表示为手机端打开  
function check() {   
  var userAgentInfo=navigator.userAgent;   
  var Agents =new Array("Android","iPhone","SymbianOS","Windows Phone","iPad","iPod");   
  var flag=true;   
  for(var v=0;v<Agents.length;v++) {   
     if(userAgentInfo.indexOf(Agents[v])>0) {   
       flag=false;   
       break;   
     }   
   }   
   return flag;   
  }


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post