首页 黑客接单正文

网页判断是否安装app(如何判断本机是否安装web服务器)

ios 网页怎么判断是否安装app

本文实例讲解了js判断移动端是否安装某款app的多种 *** ,分享给大家供大家参考,具体内容如下之一种 *** :一:判断是那种设备var isAndroid = u.indexOf('Android') -1 u.indexOf('Linux') -1; //android终端或者uc浏览器 var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端 二:安卓设备:原理:判断是否认识这个协议,认识则直接跳转,不认识就在这里下载appandroid(); if(isAndroid){ function android(){ window.location.href = "openwjtr://com.tyrbl.wjtr"; window.setTimeout(function(){ window.location.href = "/download/index.html"; },2000); }; 二:ios设备:原理:判断是否认识这个协议,认识则直接跳转,不认识就在这里下载appios();if(isiOS){ function ios(){ var ifr = document.createElement("iframe"); ifr.src = "openwjtr://com.tyrbl.wjtr"; ifr.style.display = "none"; document.body.appendChild(ifr); window.setTimeout(function(){ document.body.removeChild(ifr); window.location.href = "/download/index.html"; },2000) }; } 第二种 *** :虽然在Js中可以启动某个app,但是并不能判断该app是否安装;启动app需要的时间较长,js中断时间长,如果没安装,js瞬间就执行完毕。直接上代码吧!html代码:a href="javascript:testApp('tel:1868888888')"打 *** /a js代码:function testApp(url) { var timeout, t = 1000, hasApp = true; setTimeout(function () { if (hasApp) { alert('安装了app'); } else { alert('未安装app'); } document.body.removeChild(ifr); }, 2000) var t1 = Date.now(); var ifr = document.createElement("iframe"); ifr.setAttribute('src', url); ifr.setAttribute('style', 'display:none'); document.body.appendChild(ifr); timeout = setTimeout(function () { var t2 = Date.now(); if (!t1 t2 - t1 t + 100) { hasApp = false; } }, t); } 第三种 *** :最近在做项目的wap版,有个需求就是,先判断手机上是否有我们的APP应用,如果有的话打开应用,没有才跳转到wap页面。 wap简单来说就是运行在移动端浏览器上的网站。不管应用在什么地方,总之就是浏览器呗,可以通过 *** 来判断本地是否有某应用,实现方式实际就是将http协议转为本地软件协议。 还是直接贴代码吧。如下: script language="javascript" if (navigator.userAgent.match(/(iPhoneiPodiPad);?/i)) { var loadDateTime = new Date(); window.setTimeout(function() { var timeOutDateTime = new Date(); if (timeOutDateTime - loadDateTime 5000) { window.location = "要跳转的页面URL"; } else { window.close(); } }, 25); window.location = " apps custom url schemes "; } else if (navigator.userAgent.match(/android/i)) { var state = null; try { state = window.open("apps custom url schemes ", '_blank'); } catch(e) {} if (state) { window.close(); } else { window.location = "要跳转的页面URL"; } } /script apps custom url schemes 是什么呢?其实就是你与APP约定的一个协议URL,你的IOS同事或Android同事在写程序的时候会设置一个URL Scheme,例如设置:URL Scheme :app然后其他的程序就可以通过URLString = app:// 调用该应用。还可以传参数,如:app://reaction/?uid=1原理:500ms内,本机有应用程序能解析这个协议并打开程序,调用该应用;如果本机没有应用程序能解析该协议或者500ms内没有打开这个程序,则执行setTimeout里面的function,就是跳转到你想跳转的页面。以上就是js判断移动端是否安装某款app的多种 *** ,希望对大家的学习有所帮助。

Html5页面如何判断是否安装某app

//判断手机端操作系统(Andorid/IOS),并自动跳转相应下载界面

var androidURL ="XXX";

var browser = {

versions: function() {

var u = navigator.userAgent, app = navigator.appVersion;

return {

android: u.indexOf("Android") -1 || u.indexOf("Linux") -1,

iPhone: u.indexOf("iPhone") -1 ,

iPad: u.indexOf("iPad") -1,

iPod: u.indexOf("iPod") -1,

};

} (),

language: (navigator.browserLanguage || navigator.language).toLowerCase()

}

function isInstalled(){

window.location="xx://";//打开某手机上的某个app应用

setTimeout(function(){

if (browser.versions.iPhone||browser.versions.iPad||browser.versions.iPod){

//如果是ios系统,直接跳转至appstore该应用首页,传递参数为该应用在appstore的id

window.location.href="";

}else if(browser.versions.android){

window.location.href = androidURL;

}

},500);

};

如何在html里检测app是否已安装

html里是无法检测的,只能通过js调用android的 *** ,获取到app的安装信息后,再调用js,传值到html里获得

$(function(){

$(".a").click(function(){

var the_href=(".a").attr("href");//获得下载链接

if(ua.match(/MicroMessenger/i)=="micromessenger") { //是否微信打开

$(".box-bg").show();//微信打开出浮层,微信暂不支持Scheme打开非企鹅应用

}else {

window.location.href=; //打开某手机上的某个app应用

setTimeout(function(){

window.location.href=".......";//如果超时就跳转到app下载页

},500);

}

})

})

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。