Notice
Recent Posts
Recent Comments
Link
살다
모바일 접근 구분하여 페이지 이동 본문
스마트폰이나 각종 휴대기기로 웹페이지 접근시 지원하는 모바일웹페이지로 연결하기
<SCRIPT LANGUAGE="JavaScript">
<!--
var strGoto = "http://m.blueweb.co.kr/"; //모바일접근시 이동원하는 페이지주소
var str = window.navigator.userAgent.toLowerCase();
if(/iphone/.test(str) || /android/.test(str) || /opera/.test(str) || /bada/.test(str)) document.location.replace(strGoto);
//-->
</SCRIPT>
소스 아래 출처에서 가져와서 아주 조금 수정.
출처 : http://pakaeuro.blog.me/110093238441
<SCRIPT LANGUAGE="JavaScript">
<!--
var strGoto = "http://m.blueweb.co.kr/"; //모바일접근시 이동원하는 페이지주소
var str = window.navigator.userAgent.toLowerCase();
if(/iphone/.test(str) || /android/.test(str) || /opera/.test(str) || /bada/.test(str)) document.location.replace(strGoto);
//-->
</SCRIPT>
소스 아래 출처에서 가져와서 아주 조금 수정.
출처 : http://pakaeuro.blog.me/110093238441
반응형
'Tip' 카테고리의 다른 글
모바일웹을 위한 아이폰/아이패드 시뮬레이터 (2) | 2010.10.08 |
---|---|
스마트폰을위한 프로야구 정보 사이트 (0) | 2010.08.25 |
아이폰(스마트폰) 메일 어플리케이션에 IMAP 설정하기 (0) | 2010.08.25 |