概述
<button class="openApp">立即下载</button> 页面按钮
//判断安装app,有跳转,无则跳至下载页面
$(".openApp").click(function(){
if(navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)){
window.location.href = "url://xxx?xx="+${xx}";
//ios app协议(如:com.baidu.tieba://)
window.setTimeout(function() {
window.location.href = "https://a.app.qq.com/o/simple.jsp?pkgname=xxx";
//跳转到App store
}, 3000)
}
if(navigator.userAgent.match(/android/i)){
window.location.href = "url://xxx?xx="+${xx}; //android app协议(如:com.baidu.tieba://app)
window.setTimeout(function() {
window.location.href = "https://a.app.qq.com/o/simple.jsp?pkgname=xxx";
//android 下载地址
}, 3000) //先通过协议打开APP 如果超过三秒没响应,则跳到应用宝商城下载
}
})
最后
以上就是坚强小甜瓜为你收集整理的微信二次分享判定移动端是否安装了app,已安装则打开,未安装则跳转到下载页面的全部内容,希望文章能够帮你解决微信二次分享判定移动端是否安装了app,已安装则打开,未安装则跳转到下载页面所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复