Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IE 8
- 오즈 옴니아
- ddos
- Windows 7
- PDA
- 이클립스 설정
- VMwareTools
- 한메일
- VMware
- HP 신제품
- jQuery
- php
- 한메일 smtp
- DDos 전용 백신
- 윈도우 7
- 이클립스 플러그인
- 오좀니아
- 한메일 pop
- 옴니아2
- HP
- IE8
- Live Mesh
- 파워블로그
- 파블애드
- 삼성 메모리
- Internet Explorer 8
- 이클립스
- XP 설치
- Ajax
- USB 레지스트리
Archives
- Today
- Total
엉망진창
브라우저 구분 - User Agent String 본문
User Agent 리스트 - http://useragentstring.com/pages/useragentstring.php
모든 브라우저의 User Agent 확인 - http://useragentstring.com/pages/All/
참조 : http://useragentstring.com
참조 : 스마트폰, 풀 브라우징폰의 User Agent명(브라우저명)은?
아래는 자바스크립트 예제
모든 브라우저의 User Agent 확인 - http://useragentstring.com/pages/All/
참조 : http://useragentstring.com
참조 : 스마트폰, 풀 브라우징폰의 User Agent명(브라우저명)은?
아래는 자바스크립트 예제
var uAgent = navigator.userAgent.toLowerCase(); var mobilePhones = new Array('iphone', 'ipod', 'ipad', 'android', 'blackberry', 'windows ce','nokia', 'webos', 'opera mini', 'sonyericsson', 'opera mobi', 'iemobile'); for (var i = 0; i < mobilePhones.length; i++) if (uAgent.indexOf(mobilePhones[i]) != -1) document.location = "접속할 사이트 주소";
'Study_Web > Web Common' 카테고리의 다른 글
다음 약도 만들기 서비스 참고 링크 (0) | 2015.05.18 |
---|---|
웹 서버와 WAS(Web Application Server)의 정의 (0) | 2012.03.13 |
웹표준 참고 문서 (0) | 2011.12.15 |
웹 접근성 연구소 K-WAH (0) | 2011.04.06 |
CVS 사용에 대한 FAQ 모음 (0) | 2011.03.09 |