Created
January 22, 2015 11:12
-
-
Save naoyeye/149923e2aff054adde10 to your computer and use it in GitHub Desktop.
判断是否是 PC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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