首页 > 代码库 > js调用app启动页
js调用app启动页
第一步:添加js
$(function () {
var ua = window.navigator.userAgent.toLowerCase();
//微信
if(ua.match(/MicroMessenger/i) == ‘micromessenger‘){
//微信浏览器绑定事件
/*$(".app").bind(‘click‘, function (event) {
window.location.href = http://www.mamicode.com/‘‘;
})*/
}else{//非微信浏览器
if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) { //iPhone|iPod|iPad浏览器
$(".app").bind(‘click‘, function (event) {
var loadDateTime = new Date();
window.setTimeout(function () {
var timeOutDateTime = new Date();
if (timeOutDateTime - loadDateTime < 5000) {
window.location = "http://itunes.apple.com/app/1219885292";//ios下载页面
} else {
window.close();
}
}, 25);
window.location = "YuWan://com.YuWan.DianJingPingTai"; //调用ios启动页地址
})
}else if (navigator.userAgent.match(/android/i)) { //安卓浏览器
$(".app").bind(‘click‘, function (event) {
var state = null;
try {
window.location = ‘appshare://bluemobi.cn.esport‘; //调用andriod启动页地址
setTimeout(function(){
window.location= "download.html"; //android下载页面
},500);
} catch(e) {}
})
}
}
})
第二步:请andriod人员配置一下参数 apps custom url schemes
http://blog.csdn.net/xc765926174/article/details/51397847
第三步:请ios人员配置一下参数apps custom url schemes
http://blog.csdn.net/ba_jie/article/details/6884818
js调用app启动页
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。