if (navigator.userAgent.match(/android/i) ){2、iphone用一样的原理实现测试有效 3、weixin分享里面的页面会在url添加变量isappinstalled isappinstalled=1的时候代表安装了app,值为0的时候代表没有安装 微信屏蔽了url scheme直接跳转,所以weixin分享页通过提示浏览器打开 再根据之前的isappubstalled值来判断是否安装app
var nowTime = new Date().valueOf();
setTimeout(function(){
var launchTime = new Date().valueOf() - nowTime;
if(launchTime < 28){ //28是调试估算出来的打开本地app基本需要的时间
window.location = "/phone/forward/app_download_redirect"; //下载app页面
}
},25);
window.location="mysppscheme://";//自己定义的scheme协议
}
var isWeixin = navigator.userAgent.match(/MicroMessenger/ig); //是否在微信上面方式是我通过谷歌看大家提出的方式和自己的测试唯一还没出现问题的方式 当然后续有问题会继续更新 二、判断是否在app内部打开html5页面 判断当前页面是否在app内部打开,单纯的web前端还不能解决 需要客户端对userAgent添加自己app相关的字段 (useragent设置Android:http://www.jincon.com/archives/354/) (useragent设置IOS:http://www.jianshu.com/p/5f02451b8e87)
var appInstalled = document.location.href.indexOf("isappinstalled=1")>=0; //是否安装app
var userAgent = navigator.userAgent.toLowerCase(), //获取userAgent
isInapp = userAgent.indexOf("sunyuki")>=0;//查询是否有相关app的相关字段