javascript 모바일 PC 구분
페이지 정보
작성자 미친새 작성일 20-02-21 10:40 조회 17,473 댓글 0본문
<script type=\"text/javascript\">
//<![CDATA[
var myAgent=navigator.userAgent.toLoweCase(); // 브라우저 전체 이름을 불러 온 후, 소문자로 바꾼다.
var mobile=[\"iphone\",\"ipod\"m\"android\",\"blackberry\",\"window ce\",\"nokia\",\"webos\",
\"opera mini\",\"sonyericsson\",\"opera mobi\",\"iemobile\"]; // 스마트폰 브라우저 이름 배열 저장
for(var i=0;i<mobile.length;i++){
if(myAgent.indexOf(mobile[i]>=0){
location.href=\"mb_page.html\"; // 모바일용 페이지
};
location.href=\"ie_page.html\"; // 데스크탑용 페이지
};
//]]>
</script>
//<![CDATA[
var myAgent=navigator.userAgent.toLoweCase(); // 브라우저 전체 이름을 불러 온 후, 소문자로 바꾼다.
var mobile=[\"iphone\",\"ipod\"m\"android\",\"blackberry\",\"window ce\",\"nokia\",\"webos\",
\"opera mini\",\"sonyericsson\",\"opera mobi\",\"iemobile\"]; // 스마트폰 브라우저 이름 배열 저장
for(var i=0;i<mobile.length;i++){
if(myAgent.indexOf(mobile[i]>=0){
location.href=\"mb_page.html\"; // 모바일용 페이지
};
location.href=\"ie_page.html\"; // 데스크탑용 페이지
};
//]]>
</script>
댓글목록 0
등록된 댓글이 없습니다.