继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

关于手机wap打开某APP应用相关知识点

FreeSnail
关注TA
已关注
手记 1
粉丝 3
获赞 2

**注:目前已测的只有安卓端 其他相关后续补充

首先,wap的HTML页面

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

        <title>Insert title here</title>
    </head>
    <body>
        <a href="m://my.com/">打开app</a><br/>/**传参的话,格式m://my.com/?action=1**/
    </body>
</html> 
在Android本地app的配置在

AndroidManifest的清单文件里的intent-filte中加入如下元素:

<intent-filter>
    <action android:name="android.intent.action.VIEW" />  
    <category android:name="android.intent.category.DEFAULT" />  
    <category android:name="android.intent.category.BROWSABLE" />
    <data 
        android:host="my.com"  
        android:scheme="m" />
</intent-filter>

配置完成后,即可通过wap端去打开APP。(如果手机中没有安装你的APP,点击是没有效果的)

据我了解,Android当前没有直接的js判断是否安装了APP。所以实现没有APP就弹出下载的方法不太完善

以下是判断方法

if(navigator.userAgent.match(/android/i)){
    function android(){
        window.location.href = "m://my.com/";
        // **打开app的协议,没有APP时该项不做反应**
        setTimeout(function(){
            window.location.href = "http://www.xuetongtt.com/download/android/xuetongtt_Android.apk";
         /***弹出下载项,注:此处的下载项,如果是APk包的下载链接,则本页弹出下载选项,否则会跳转页面***/
        },2000);
    };
}

出处

打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP