是否为微信
isWeiXin: (function () {
let ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger') {
return true;
} else {
return false;
}
})(),
是否为企业微信
isQYweixin: (function () {
var ua = window.navigator.userAgent.toLowerCase();
if (
ua.match(/MicroMessenger/i) == "micromessenger" &&
ua.match(/wxwork/i) == "wxwork"
) {
return true;
} else {
return false;
}
})(),
是否为钉钉
isDD: (function(){
if (dd.env.platform != "notInDingTalk") {
return true;
}else{
return false;
}
})()