Rumah > Soal Jawab > teks badan
Pada halaman web mudah alih, bagaimana untuk menentukan sama ada aplikasi dipasang pada iOS?
typecho2017-07-01 09:14:24
Soalan ini ada pada segmentfault Halaman web IOS boleh menentukan sama ada aplikasi dipasang
Saya sudah lama tidak melihatnya:
<script language="javascript">
if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
var loadDateTime = new Date();
window.setTimeout(function() {
var timeOutDateTime = new Date();
if (timeOutDateTime - loadDateTime < 5000) {
window.location = "要跳转的页面URL";
} else {
window.close();
}
},
25);
window.location = " apps custom url schemes ";
} else if (navigator.userAgent.match(/android/i)) {
var state = null;
try {
state = window.open("apps custom url schemes ", '_blank');
} catch(e) {}
if (state) {
window.close();
} else {
window.location = "要跳转的页面URL";
}
}
</script>