반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Next.js
- docker
- Eclipse
- submit
- spring3
- yona
- pwa
- jenkins
- centos7
- popup
- Maven
- node.js
- mysql
- NextJS
- nodejs
- rocky9
- config
- ajax
- Java
- git
- MariaDB
- security
- PM2
- mybatis
- jquery
- Push
- FCM
- SpringBoot
- MSsql
- javascript
Archives
- Today
- Total
ふたりで
javascript 브라우저 구분 처리 navigator.userAgent.toLowerCase() 본문
728x90
반응형
SMALL
1. 익스플로러, 넷스케이프,트라이던트 등 옛 브라우저 구분 처리
var oldbrchk = navigator.userAgent.toLowerCase();
if ( (navigator.appName == 'Netscape' && navigator.userAgent.search('Trident') != -1) || (oldbrchk.indexOf("msie") != -1) ) {
if(confirm('해당페이지는 크롬(Chrome)기반 에서 정상 동작 합니다.\n'
+'크롬(Chrome) 설치후 기본 브라우저로 설정해 주세요.\n'
+'[확인]을 클릭 하시면 크롬(Chrome) 다운로드 페이지로 \n이동 합니다.')){
window.location.href='https://www.google.co.kr/chrome/';
};
}
2. 참고
- 크롬: agent.indexOf("chrome")
- 사파리: agent.indexOf("safari")
- 파이어폭스: agent.indexOf("firefox")
728x90
반응형
LIST
'javascript' 카테고리의 다른 글
jquery checkbox .prop().trigger() (0) | 2022.05.17 |
---|---|
layer popup Drag & Drop jquery draggable (0) | 2022.05.17 |
javascript, jquery 실시간 글자수 체크 (0) | 2022.04.14 |
document.ready 이후 동적으로 생성된 Element에 event 걸기 (0) | 2021.12.10 |
excelexportjs 사용시 숫자를 문자로 인식 시키기 (0) | 2021.12.09 |
Comments