先奉上代码:
// 打开(下载)App
openApp() {
const ua = window.navigator.userAgent.toLowerCase();
// 非微信浏览器
if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
const loadDateTime = +new Date();
window.setTimeout(function() {
const timeOutDateTime = +new Date();
if ((timeOutDateTime - loadDateTime) < 5000) {
window.location.href = ''; // ios下载地址
} else {
window.close();
}
}, 2000);
window.location.href = ' '; // ios对应的app协议
} else if (navigator.userAgent.match(/android/i)) {
const s