반응형
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 |
Tags
- ajax
- mybatis
- jenkins
- javascript
- nodejs
- MariaDB
- node.js
- docker
- jquery
- yona
- MSsql
- PM2
- git
- rocky9
- spring3
- pwa
- mysql
- FCM
- Maven
- popup
- centos7
- Push
- Eclipse
- Next.js
- config
- Java
- security
- Tomcat
- NextJS
- SpringBoot
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