如何用js检测手机是否安装某个app

Posted anne_zhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用js检测手机是否安装某个app相关的知识,希望对你有一定的参考价值。

//html代码中 的 a 标签,以微信为例,默认的是调用weixin scheme,去打开本机的微信,如果没有则跳转到相应连接

    <a href="weixin://" class="btn-download">立即打开</a>
  
    // 为btn-download 绑定事件,如果在500ms内,没有解析到协议,那么就会跳转到下载链接
     var appstore, ua = navigator.userAgent;
        if(ua.match(/android/i)){
            appstore = ‘market://search?q=com.singtel.travelbuddy.android‘;
        }
        if(ua.match(/iphone|ipod|ipad/)){
            appstore = "https://itunes.apple.com/cn/app/wei-xin/id414478124?mt=8&ign-mpt=uo%3D4";
        }
        function applink(fail){ 
            return function(){ 
                var clickedAt = +new Date; 
                // During tests on 3g/3gs this timeout fires immediately if less than 500ms. 
                setTimeout(function(){ 
                     // To avoid failing on return to MobileSafari, ensure freshness! 
                      if (+new Date - clickedAt < 2000){ 
                          window.location = fail; 
                      
                }, 500);     
            }; 
        
        $(‘.icon-download, .btn-download‘)[0].onclick = applink(appstore);

以上是关于如何用js检测手机是否安装某个app的主要内容,如果未能解决你的问题,请参考以下文章

如何用shell命令打开某个手机app

android检测手机是否安装某个app

如何用MAC上的Safari检查iPhone手机App运行的Html页面

网页代码 JS代码 检测手机或是Pad设备 是不是安装某软件 之后做相应的跳转

如何用adb命令查看Android手机具体某个应用的耗电量?

如何用 Android 数据绑定替换 androidx.fragment.app.FragmentContainerView 中的片段