Skip to content

Instantly share code, notes, and snippets.

@naoyeye
Created January 22, 2015 11:12
Show Gist options
  • Select an option

  • Save naoyeye/149923e2aff054adde10 to your computer and use it in GitHub Desktop.

Select an option

Save naoyeye/149923e2aff054adde10 to your computer and use it in GitHub Desktop.
判断是否是 PC
var ispc = false;
(function(){
var SUA = navigator.userAgent, SUA_OF = function(s){return SUA.indexOf(s) > -1};
if (SUA_OF('Android') && SUA_OF('Mobile') || SUA_OF('iPhone') || SUA_OF('iPod') || SUA_OF('Symbian') || SUA_OF('IEMobile')){
}else{
ispc = true;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment