반응형
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 |
Tags
- nodejs
- mysql
- Next.js
- ajax
- rocky9
- node.js
- javascript
- NextJS
- centos7
- PM2
- FCM
- jenkins
- MSsql
- Maven
- git
- jquery
- popup
- Tomcat
- Push
- SpringBoot
- MariaDB
- security
- mybatis
- docker
- config
- pwa
- yona
- spring3
- Java
- Eclipse
Archives
- Today
- Total
목록브라우저체크 (1)
종이 한장 차이...
javascript 브라우저 구분 처리 navigator.userAgent.toLowerCase()
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/c..
javascript
2022. 4. 20. 14:04