js判断网站在微信,QQ内置浏览器打开
2020-05-19
1 min read
<script>
if (is_weixn()||is_qq()) {
alert("\n点击右上角,选择"在浏览器中打开",获得更好体验");
}
// 是微信浏览器
function is_weixn() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
}
function is_qq(){
var sUserAgent =navigator.userAgent.toLowerCase();
if( sUserAgent.match(/QQ/i) == 'qq'){
return true
}else{
return false
}
}
</script>