티스토리 뷰

■ 아이폰, 아이팟, 윈도우모바일, 심비안, 블랙베리, 안드로이드로 접속시 특정 사이트로 이동
 
< SCRIPT language="JavaScript" type="text/JavaScript">
< !--
if( (navigator.userAgent.match(/iPhone/i))
||
(navigator.userAgent.match(/iPod/i))
||
(navigator.userAgent.match(/Windows CE/i))
||
(navigator.userAgent.match(/Symbian/i))
||
(navigator.userAgent.match(/BlackBerry/i))
||
(navigator.userAgent.match(/Android/i)) ) {
    document.location.href="http://m.smallking.co.kr/";
} else {
    document.location.href="/html/00_main/";
}
-->
< /SCRIPT>
 
============================================================================================
※ 아래의 내용은 안됨 - 자세한 부분은 확인 전 
 
< SCRIPT language="JavaScript" type="text/JavaScript">
var mobileKeyWords = new Array("iPhone","iPod","BlackBerry","Android","Windows CE","LG","MOT","SAMSUNG","SonyEricsson");
for(var word in mobileKeyWords) {
    if(navigator.userAgent.match(mobileKeyWords[word] != null)) {
        document.location.href="http://m.smallking.co.kr/";
        break;
    }
}
< /SCRIPT> 

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31