iOS和Android手机浏览器链接打开app store或应用市场下载软件
短信预约 -IT技能 免费直播动态提醒
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
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341