iOS和Android手机浏览器链接打开app store或应用市场下载软件
1.Android主流手机跳转链接
oppomarket://details?packagename=' + androidId
'appmarket://details?id' + androidId
'mimarket://details?id=' + androidId
'vivomarket://details?id=' + androidId
'samsungapps://ProductDetail/' + androidId
'market://details?id=' + androidId;
2.判断手机类型
function initMobileType() {
let userAgent = navigator.userAgent
if (userAgent.includes('iphone')) {
return 'iphone';
} else if (userAgent.includes('huawei') || userAgent.includes('honor')) {
return 'huawei';
} else if (userAgent.includes('mi') || userAgent.includes('mix') || userAgent.includes('redmi')) {
return 'xiaomi';
} else if (userAgent.includes('vivo')) {
return 'vivo';
} else if (userAgent.includes('sm')) {
return 'samsung';
} else if (userAgent.includes('pacm00') || userAgent.includes('oppo')) {
return 'oppo';
} else {
return 'default'
}
}
3.iOS跳转app store
window.location.href='https://apps.apple.com/cn/app/dsoon/' + iosId