아래는 http://blog.taks.pe.kr/34 에서 퍼온 내용입니다.
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=medium-dpi" />
<script type="text/javascript" src="/resources/js/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
//<![CDATA[
var isIPHONE = (navigator.userAgent.match('iPhone') != null || navigator.userAgent.match('iPod') != null);
var isIPAD = (navigator.userAgent.match('iPad') != null);
var isANDROID = (navigator.userAgent.match('Android') != null);
var _APP_INSTALL_URL_IOS = "http://itunes.apple.com/kr/app/id393499958?mt=8";
var _APP_INSTALL_URL_ANDROID = "http://m.androidapp.naver.com/naverapp";
var _APP_INSTALL_CONFIRM = "네이버앱을 설치하거나\n업데이트하시면\n이용할 수 있습니다.\n설치 하시겠습니까?";
function executeApp(url) {
installApp();
if (isIPHONE || isIPAD) {
window.location.href = url;
} else if (isANDROID) {
$('applinkDiv').innerHTML = '<iframe src="' + url + '" width="0" height="0" frameborder="0"></iframe>';
setTimeout(function(){
var b = $('applinkDiv');
var c = b.getElementsByTagName('iframe');
if (c.length > 0) { b.removeChild(c[0]); }
}, 1000);
}
}
function installApp() {
var b = new Date();
setTimeout(function(){
if (new Date() - b < 1500) {
if (isIPHONE || isIPAD) {
if (confirm(_APP_INSTALL_CONFIRM)) { window.location.href = _APP_INSTALL_URL_IOS; }
} else if (isANDROID) {
if (confirm(_APP_INSTALL_CONFIRM)) { window.location.href = _APP_INSTALL_URL_ADROID; }
}
}
}, 500);
}
//]]>
</script>
</head>
<body>
<a href="naversearchapp://" onclick="executeApp(this.href);return false;">네이버앱 실행</a><br />
<div id="applinkDiv"></div>
</body>
</html>
'Private > SW Programming' 카테고리의 다른 글
[1] 루비를 위한 환경과 도구들 (0) | 2013.04.10 |
---|---|
[0] Ruby가 뭔가요? 먹는건가요? 우걱우걱. (0) | 2013.04.10 |
윈도우에서 레드마인(Redmine) 설치하기 (0) | 2012.05.01 |
Windows 에서의 심볼릭 링크 (0) | 2012.04.04 |
libcmtd.lib msvcrtd.lib 이건 뭡니까? 같은 겁니까? 다른 겁니까? (0) | 2012.03.29 |