H5 打开App

IOS

1、只能在safari浏览器打开,

2、必须App安装的情况下。

3、IOS必须配置 URLSchemes 为 "yidiandai://"  才可以。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body style="height: 100%;  100%; background: red">
    <input style="250px;height:250px;" type="button" value="点击一下" onclick="window.location.href = 'yidiandai://'" />
</body>
</html>

Android

 Android必须在AndroidManifest.xml配置:

<data android:host="yidiandai.com"   
   android:scheme
="com.junte.yidiandai" />

前端跳转链接:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body style="height: 100%;  100%; background: red">
    <input style="250px;height:250px;" type="button" value="点击一下" onclick="window.location.href = 'com.junte.yidiandai://yidiandai.com'" />
</body>
</html>
原文地址:https://www.cnblogs.com/CyLee/p/7865343.html