加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
testbridge.html 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
banmao 提交于 2020-09-07 10:35 . adds
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no,minimum-scale=1,maximum-scale=1 width=device-width"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="description" content="">
<meta name="author" content="">
<title>手机APP下载</title>
<script src="js/jquery.js"></script>
</head>
<body>
<center>
<h2 id="tips">页面跳转中,请稍后……</h2>
</center>
<script type="text/javascript">
var browser = {
versions: function () {
var u = navigator.userAgent, app = navigator.appVersion;
return { //移动终端浏览器版本信息
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或uc浏览器
iPhone: u.indexOf('iPhone') > -1, //是否为iPhone或者QQHD浏览器
iPad: u.indexOf('iPad') > -1//是否iPad
};
}()
}
if (browser.versions.iPhone || browser.versions.iPad || browser.versions.ios) {
window.location.href = "https://getapps.xiaodiankeji.net/iOS_dxpower";
}
else{
var tips = '请点击右上角的<span style="color:red">在浏览器中打开</span>进行下载。';
var h1 = document.getElementById("tips");
h1.innerHTML = tips;
window.location.href = "https://getapps.xiaodiankeji.net/android_dxpower";
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化