Skip to content

Instantly share code, notes, and snippets.

@aisin
Created June 4, 2015 09:31
Show Gist options
  • Save aisin/efa8d9c4784b4663e5ae to your computer and use it in GitHub Desktop.
Save aisin/efa8d9c4784b4663e5ae to your computer and use it in GitHub Desktop.
判断手机端浏览器是否为微信内置浏览器
window.onload = function(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
return true;
}else{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment