Skip to content

Instantly share code, notes, and snippets.

@simplelife7
Created October 30, 2014 13:24
Show Gist options
  • Save simplelife7/808cd4b095c22f365a66 to your computer and use it in GitHub Desktop.
Save simplelife7/808cd4b095c22f365a66 to your computer and use it in GitHub Desktop.
【JS】判断是手Q还是微信还是普通浏览器
function getEnv(){
var ua = navigator.userAgent.toLowerCase();
if(/micromessenger(\/[\d\.]+)*/.test(ua)){
return "weixin"
}else if(/qq\/(\/[\d\.]+)*/.test(ua) || /qzone\//.test(ua)){
return "qq";
}else{
return "web";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment