일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 노드
- 스크립트
- DATABASE
- 데이터베이스
- hamonikr
- Windows
- ubuntu
- Atlassian
- 우분투
- JS
- PostgreSQL
- 아틀라시안
- install
- 3.0
- 자바
- Linux
- 윈도우
- java
- javascript
- postgres
- 자바스크립트
- 설치
- 리눅스
- python
- 설정
- node
- 파이썬
- DB
- 하모니카
- script
Archives
- Today
- Total
목록Language (1)
LukeHan 의 잡다한 기술 블로그
javascript 접속 국가 체크
var type = navigator.appName; var lang = navigator.userLanguage; if(type=="Netscape") lang = navigator.language // 국가코드에서 앞 2글자만 자름 var lang = lang.substr(0,2); if(lang == "en"){ // 영어인 경우 window.location.replace('/en/index.html'); } else if (lang == "de"){ // 독일어인 경우 window.location.replace('/de/index.html'); } else if (lang == "es"){ // 스페인어 인 경우 window.location.replace('/es/index.html'); } el..
개발/javascript
2022. 10. 22. 20:00