检测打开设备
Posted 微笑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测打开设备相关的知识,希望对你有一定的参考价值。
/*检测是支付宝还是其他*/
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/AlipayClient/i) == ‘alipayclient‘) {
console.log(‘支付宝‘);
} else {
// InfoApi.getFingerprint(0);
};
//检测微信中打开
function isWeiXin(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.indexOf(‘micromessenger‘)!=-1){
return true;
}else{
return false;
}
}
//检测支付宝中打开
function isAlipay(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.indexOf(‘alipay‘)!=-1){
return true;
}else{
return false;
}
}
以上是关于检测打开设备的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?