您的位置:首页 > 移动开发

根据手机类型调转到应用吧还是appstore下载应用

2016-12-22 00:00 239 查看
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>正在跳转中....</title>
</head>
<script type = "text/javascript">
window.onload=function(){

if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
window.location.href ="https://itunes.apple.com/cn/app/id1147916224";
} else if (/(Android)/i.test(navigator.userAgent)) {
window.location.href ="http://imtt.dd.qq.com/16891/B34DCA2A96D185E7A27C9FE524A52182.apk?fsname=hzg.apk&csr=4d5s";
} else {
window.location.href ="pc.html";
};

};
</script>
<body>

<div style="text_align:center;">正在跳转中 ....</div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐