首页 > 代码库 > 通过网页的JS代码启动移动APP
通过网页的JS代码启动移动APP
<span style="font-size:18px;"><script> function startAPP(){ window.location = "scheme name://**.**/**"; } function downloadAPP(){ window.location = "http://IP/**/**.apk"; } </script> <style type="text/css"> body{background:#D2D460;text-align:center;margin-top:10%} div{width:100%;margin:0 auto;background:#fff;text-align:left;} </style> </head> <body> <?php $var_name = $_GET["isappinstalled"]; if ($var_name=="1"){ echo ‘<img src=http://www.mamicode.com/images/start.png alt=打开APP onclick=startAPP() >‘;"0"){ echo ‘<img src=http://www.mamicode.com/images/download.png alt=打开APP onclick=downloadAPP() >‘;>?> </body></span>
在app里面需要做以下设置(一般是在manifest.xml文件的activity的 intent filter里面)
<span style="font-size:18px;"><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:scheme="**" //scheme name ‘TencentQQ‘ android:host="**.**" android:pathPrefix="/**"> </data> </intent-filter></span>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。