iOS和Android手机浏览器链接打开app store或应用市场下载软件
1.Android主流手机跳转链接
// androidId 如:com.xxx.app// oppooppomarket://details?packagename=' + androidId// huawei'appmarket://details?id' + androidId// xiaomi'mimarket://details?id=' + androidId// vivo'vivomarket://details?id=' + androidId// samsung'samsungapps://ProductDetail/' + androidId// other'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
// iosId 如:id1640184175window.location.href='https://apps.apple.com/cn/app/dsoon/' + iosId
来源地址:https://blog.csdn.net/Berlin_Rome/article/details/129159910