티스토리 뷰
■ 아이폰, 아이팟, 윈도우모바일, 심비안, 블랙베리, 안드로이드로 접속시 특정 사이트로 이동
< 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>
'Language > JavaScript' 카테고리의 다른 글
[ JavaScript ] enter - 엔터 (0) | 2015.11.29 |
---|---|
[ JavaScript ] CONFIRM (0) | 2015.11.29 |
[ JavaScript ] 폰트 크기 조절하기 (0) | 2015.11.29 |
[ JavaScript ] 팝업창을 띄우면서 값을 POST로 넘기기 (0) | 2015.11.29 |
[ JavaScript ] 브라우저 높이와 넓이 구하기 ( self, innerHeight, innerWidth, documentElement, clientWidth, body, inner Width, clientHeight ) (0) | 2015.11.29 |