모바일 웹에서 마켓으로 이동하기

구글 플레이스토어나 앱스토어로 이동하기

 

 

 

 

 

 

 

 

 

var userAgent = navigator.userAgent;
if(userAgent.match(".*Android.*")){
	location.href = "https://play.google.com/store/apps/details?id=com.xxxxxx.m";
}else if(userAgent.match(".*iPhone.*") || userAgent.match(".*iPad.*")){
	location.href = "https://itunes.apple.com/app/id1234567890";
}

 

+ Recent posts