admin管理员组文章数量:1122847
iOS和Android手机浏览器链接打开app store或应用市场下载软件
1.Android主流手机跳转链接
// androidId 如:com.xxx.app
// oppo
oppomarket://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 如:id1640184175
window.location.href='https://apps.apple/cn/app/dsoon/' + iosId
版权声明:本文标题:iOS和Android手机浏览器链接打开app store或应用市场下载软件 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/biancheng/1727390704a1247390.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论