作者:mobiledu2502918317 | 来源:互联网 | 2023-09-17 22:21
现在想实现 浏览器访问网站,判断是否安装APP,安装了直接打开,
1 2 3 4 5 6 7 8 9 10 11 12 13
| d && ( $('#'+b).attr("href", android_down_url),
document.getElementById(b).Onclick= function() {
var a = document.createElement("iframe");
a.src = app_open_url;
a.style.display = "none";
document.body.appendChild(a),
a.Onload= function(){
alert('hello world');
}
window.setTimeout(function() {
document.body.removeChild(a)
}, 100);
} ); |
同样的代码在IOS默认浏览器可以,android就不行