<script type="text/javascript">
function checkBrowerType() {
return navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1;
}
function checkSysType() {
let u = navigator.userAgent;
if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {
return 'Android';
}
if (!!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)) {
return 'IOS';
}
}
function download() {
if (checkBrowerType()) {
alert('请在浏览器上打开')
} else {
if (checkSysType() === 'Android') {
window.location.href = "market://details?id=应用包名";
}
if (checkSysType() === 'IOS') {
window.location.href = "https://itunes.apple.com/cn/app/idxxxxxxxxxx";
}
}
}
</script>