/**
* 判断是否为安卓机型
*/
export function isAndroid() {
let _ua = window.navigator.userAgent.toLocaleLowerCase()
if (_ua.indexOf('android') > -1 || _ua.indexOf('adr') > -1) {
return true
} else {
return false
}
}
/**
* 判断是否为ios机型
*/
export function isIos() {
let _ua = window.navigator.userAgent
if (!!_ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)) {
return true
} else {
return false
}
}
该情形是出现在,ios端运行vue项目时,支付宝浏览器打不开对应的某些功能
// 判断当前浏览器是否是支付宝浏览器
export function checkAliBoswer() {
var reason = false;
if (/AlipayClient/.test(window.navigator.userAgent)) {
reason = true;
}
return reason
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)