最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

iOS和Android手机浏览器链接打开app store或应用市场下载软件

运维笔记admin4浏览0评论

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

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论