딥링크 : 웹에서 앱으로 페이지 이동
<script>
function mo_chk(){
var os;
var mobile = (/iphone|ipad|ipod|android/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
var userAgent = navigator.userAgent.toLowerCase();
if (userAgent.search("android") > -1){
return os = "android";
}else if ((userAgent.search("iphone") > -1) || (userAgent.search("ipod") > -1) || (userAgent.search("ipad") > -1)){
return os = "ios";
}else{
return os = "otehr";
}
} else {
return os = "pc";
}
}
function action_app_instagram(android_url , ios_url , ios_appstore_url){
var result_mo_chk = mo_chk();
if(result_mo_chk!="pc"){
if(result_mo_chk == "ios"){
setTimeout( function() {
window.open(ios_appstore_url);
}, 1500);
location.href = ios_url;
}else{
location.href = android_url;
}
}
}
</script>
<html>
<body>
<span onclick="action_app_instagram('intent://instagram.com/#Intent;package=com.instagram.android;scheme=https;end', 'instagram://media', '<https://itunes.apple.com/kr/app/instagram/id389801252?mt=8>')">
Instagram App 실행
</span>
</body>
</html>
좋아요7
공유하기게시글 관리구독하기
TAG
APP, applink, JavaScript, LINK, 딥링크, 앱링크
관련글
[Javascript] 파라미터 값 받기
2019.05.21
[Javascript] 클립보드 복사
2019.05.13
[Javascript] KAKAO 공유하기 기능
2019.05.10
[javascript] SELECT 옵션 의 첫번째 INDEX 선택
2019.04.04
댓글
프로필사진
혜구리ㆍ 2020.11.03 16:47 신고
안녕하세요 ! 혹시 인스타그램 어플이 깔려있어도 어플로 열리지않고 그 창 그대로 열리게 하는 방법은 없을까요 ?
수정/삭제I답글
이름
비밀번호
댓글을 입력해주세요.
비공개 댓글 남기기
1 ··· 30 31 32 33 34 35 36 37 38
티스토리
© 2018 T-Story. All right reserved.
window.location.replace("yourapp://path/"); setTimeout(function () {
window.location.replace("<https://itunes.apple.com/app/id12345678>"); }, 2000);