Skip to content

Instantly share code, notes, and snippets.

@foru17
Created June 19, 2014 09:47
Show Gist options
  • Save foru17/da44612e9edf2bfaa410 to your computer and use it in GitHub Desktop.
Save foru17/da44612e9edf2bfaa410 to your computer and use it in GitHub Desktop.
判断是否是微信内置浏览器的方法
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