js怎么识别app是否已安装?


    $(".a").click( function (){


        var agentUser = navigator.userAgent;

        if (agentUser.indexOf('iPhone')>-1 || agentUser.indexOf('iPod')>-1 || agentUser.indexOf('iPad')>-1) {


            $(this).prop('href','KingTalentApp://')


            window.setTimeout(function () {

                window.location.href = 'itms-apps://itunes.apple.com/us/app/jin-ying-jie/id1184103156?l=zh&ls=1&mt=8';

            }, 1000);

        }

        else if( agentUser.indexOf('Android')>-1 || agentUser.indexOf('Lindex')>-1)

        {


            $(this).prop('href','jinyingjie://app.jinyingjie')


            window.setTimeout(function () {

                window.location.href = 'http://www.jinyingjie.com/Uploads/jinyingjie.apk';

            }, 1000);

        }


    })

在网上找的代码 苹果没有问题 但是安卓手机总是有些机型识别不了

蓝山帝景
浏览 479回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript