浏览器和app没有通信协议,所以h5不知道用户的手机释放安装了app。因此只能是h5去尝试唤起app,若不能唤起,引导用户去下载我们的app。微信里屏蔽了 schema 协议,如果在微信中打开h5,则会提示用户在浏览器中打开。% k/ E" A# S2 N) d1 X& s
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- <meta charset="utf-8" />
- <meta
- content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no;"
- name="viewport"
- />
- <script>
- // 检查是否安装app function openApp(e){
- var u = window.navigator.userAgent;
- var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; //android终端或者uc浏览器 var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
- if(isAndroid){ android();
- }
- if(isiOS){ ios();
- }
- }
- function android(){
- var _clickTime = new Date().getTime();
- window.location.href = '??????????????????'; /***打开app的协议,有安卓同事提供***/
- //启动间隔20ms运行的定时器,并检测累计消耗时间是否超过3000ms,超过则结束 var _count = 0, intHandle;
- intHandle = setInterval(function(){
- _count++;
- var elsTime = new Date().getTime() - _clickTime; if (_count>=100 || elsTime > 3000 ) { console.log(_count)
- console.log(elsTime) clearInterval(intHandle);
- //检查app是否打开
- if ( document.hidden || document.webkitHidden) {
- // 打开了
- window.close();
- } else {
- // 没打开
- alert('没打开')
- // window.location.href = "??????????????";//下载链接
- }
- }
- }, 20);
-
- }
-
- function ios(){
- var _clickTime = +(new Date());
- var ifr = document.createElement("iframe");
- ifr.src = "??????????????"; /***打开app的协议,有ios同事提供***/ ifr.style.display = "none";
- document.body.appendChild(ifr);
- //启动间隔20ms运行的定时器,并检测累计消耗时间是否超过3000ms,超过则结束 var _count = 0, intHandle;
- intHandle = setInterval(function(){
- _count++;
- var elsTime = +(new Date()) - _clickTime; console.log(_count,elsTime,+(new Date()),_clickTime) if (_count>=100 || elsTime > 3000 ) {
-
- clearInterval(intHandle); document.body.removeChild(ifr);
- //检查app是否打开
- if ( document.hidden || document.webkitHidden) {
- // 打开了
- window.close();
- } else {
- // 没打开
- alert('没打开')
- // window.location.href = "???????????????";//下载链接
- }
- }
- },20);
- }
- var objbtn=document.getElementById('btn'); objbtn.onclick=function(){
- openApp()
- }
- </script>
- </head>
- <body style="background-color: #fff">
- <!--测试app调起-->
- <div
- id="btn"
- style="
- font-size: 40px;
- background: blue;
- color: #fff;
- height: 56px;
- text-align: center;
- "
- >
- btn
- </div>
- <!--测试app调起over-->
- </body>
- </html>
重要的是安装了app打开app,但是不能让用户在点击确定的时候,跳转到下载页。没安装app的用户,不能等待太久,还不到app下载页。 若通过url scheme 打开app成功,那么当前h5会进入后台,通过计时器会有明显延迟。利用时间来判断。4 T7 f2 r4 p6 M4 Q# k& z& s
由于安卓手机,页面进入后台,定时器setTimeout仍会不断运行,所以这里使用setInterval,较小间隔时间重复多次。来根据累计时间判断。document.hidden对大于4.4的webview支持很好,为页面可见性api。
$ E8 T3 U3 b4 Z0 u, J" K3 S% L& ] window.location.href='rtjr://app.rongtuojinrong.com?flag=23&pid={$pid}';js无法调起这种协议的url。' j( T5 d& \6 w. `; [! v
<a href="rtjr://app.rongtuojinrong.com?flag=23&pid={$pid}" ></a>只能用 a标签,或者iframe。 |