zendwang
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8"/>
		<title>APP 下载</title>
		<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
	</head>
	<body>
		<script type="text/javascript">
			var UA = navigator.userAgent,devicesType = "android";
			(UA.indexOf("iPhone") > -1 || UA.indexOf("iPad") > -1) && (devicesType = "iPhone");
			if(devicesType === "android"){
				location.href = "应用下载地址";
			}
			if(devicesType === "iPhone"){
			    location.href = "应用下载地址";
			}
		</script>
	</body>
</html>

  

分类:

技术点:

相关文章:

  • 2021-12-14
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2022-01-05
  • 2021-12-02
猜你喜欢
  • 2021-07-07
  • 2022-12-23
  • 2022-01-14
  • 2021-08-17
  • 2021-12-26
  • 2021-11-17
相关资源
相似解决方案