코드 기능:
앱이 휴대폰/태블릿에 설치되어 있는지 확인
설치된 경우 앱의 구성표를 호출하고 후속 작업을 위한 매개변수로 URL을 전달
설치되지 않은 경우 다음으로 이동합니다. 앱스토어/구글플레이 다운로드 앱
}
var isiOS = navigator.userAgent.match('iPad')
|| navigator.userAgent.match('iPhone')
|| navigator.userAgent.match('iPod') , isAndroid = navigator.userAgent
.match('Android'), isDesktop = !isiOS&&!isAndroid;
if (isiOS) {
setTimeout(function () { window.location = "itms-apps: //itunes.apple.com/app/[이름]/[id]?mt=8"; },25);
window.location = "[scheme]://[host]?url=" openUrl ;
}else if(isAndroid){
window.location = "intent://[host]/" "url=" openUrl "#Intent;scheme=[scheme];package=[package_name];end ";
}else{
window.location.href = openUrl;
}
})();