document.getElementById('openApp').onclick = function(e) {
//ios
if(navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
var browser = navigator.userAgent.toLowerCase();
if(browser.match(/micromessenger/i)) {
//微信内置浏览器
window.location.href ="hengtaixin://";
window.setTimeout(function() {
window.location.href = "https://itunes.apple.com/us/app/cheng-shi-gao-er-fu/id1008696844?mt=8&uo=4";
}, 1000)
return
} else {
window.location.href ="hengtaixin://"; //ios app协议,由ios同事提供
window.setTimeout(function() {
window.location.href = "https://itunes.apple.com/us/app/cheng-shi-gao-er-fu/id1008696844?mt=8&uo=4";
}, 2000)
return
}
}
if(navigator.userAgent.match(/android/i)) {
//Android
window.location.href = "app://city_golf";//安卓协议,由安卓同事提供
window.setTimeout(function() {
window.location.href = "http://a.app.qq.com/o/simple.jsp?pkgname=gr eenjoy.golf.app&g_f=991653"
}, 2000)
return
}
};
---------------------
作者:tiantiandashi
来源:CSDN
原文:https://blog.csdn.net/tiantiandashi/article/details/81074927
版权声明:本文为博主原创文章,转载请附上博文链接!
网友评论