iOS용
<a href=’jsvascript:runApp();’>run MyApp</a><br>
<script type=’text/javascript’>
window.runApp = function()
{
setTimeout(function()
{
Window.location=’http://www.naver.com’
}, 500);
Window.location = ‘myapp://test’;
}
</script>
안드로이드 용
<script>
function checkApplicationInstall() {
document.checkframe.location = "myapp://check_install";
setTimeout("checkApplicationInstall_callback()", 1000);
}
function checkApplicationInstall_callback()
{
try
{
var s = document.checkframe.document.body.innerHTML;
// 어플리케이션 설치되어있음
alert('설치되있네?');
}
catch (e)
{
// 어플리케이션 설치 안 되어있음
alert('설치안되있네?');
}
}
</script>
<input type="button" value="check app install" onclick="checkApplicationInstall()"/><br/>
<iframe id="checkframe" name="checkframe" src="check.html" width="0" height="0"></iframe>
'프로그래밍 > JavaScript' 카테고리의 다른 글
셀렉트 박스 사이의 항목이동 및 순서변경 (0) | 2012.02.09 |
---|---|
순서변경 스크립트 (0) | 2012.02.09 |
jquery.validator 정리 (0) | 2012.01.27 |
이미지 파일첨부시 업로드 이미지 미리보기 (IE8, Firefox 3) (0) | 2011.05.20 |
[스크립트] Prototype + jQuery + Sly 를 적절히 섞어 쓰기 (0) | 2010.11.09 |