Created
June 19, 2014 09:47
-
-
Save foru17/da44612e9edf2bfaa410 to your computer and use it in GitHub Desktop.
判断是否是微信内置浏览器的方法
This file contains 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 isWechat=false; | |
UA=navigator.userAgent.toLowerCase(); | |
if(UA.match(/MicroMessenger/i)=="micromessenger"){ | |
isWechat = true; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment