site_link1 에서는 showDatepicker() 호출시 options로 language:"ko" 를 지정하면 된다고 나온다

site_link2 에서는 각 locales 파일을 import 하는 법을 알려주는데 브라우저 스크립트로는 for browser 부분을 살펴보면 된다

실제 각 나라의 locales 파일은 site_link3 에서 다운로드 가능하다

ko.js 파일을 다운로드하여 site_link2 를 참고하여 import 하여 options 에 language 를 "ko" 로 지정하면 한글로 출력된다

 

다음은 샘플 코드이다

 


<script src="./res/web/bootstrap/ext/vanillajs-datepicker@1.3.2/datepicker-full.min.js"></script>

<script src="./res/web/bootstrap/ext/vanillajs-datepicker@1.3.2/locales/ko.js"></script>

<link rel="stylesheet" href="./res/web/bootstrap/ext/vanillajs-datepicker@1.3.2/datepicker-bs5.min.css">

 

const showDatepicker = function (elem) {

    var datepicker = new Datepicker(elem, {

        buttonClass: 'btn',

        format: 'yyyy.mm.dd',

        autohide: true,

        weekStart: 1,

        startDate: new Date(),

        endDate: new Date(new Date().setDate(new Date().getDate() + 30)),

        language: 'ko'

    });

    return datepicker;

};


 

 

번호 제목 글쓴이 날짜 조회 수
22 Bootstrap Icons 황제낙엽 2024.10.13 81
21 navbars 예제 황제낙엽 2024.07.15 108
20 Chatbot 용 디자인 템플릿 (ChatGPT) file 황제낙엽 2024.01.28 128
19 문자열의 셀렉션 동작 구현 (<p>, <input>) 황제낙엽 2023.10.02 76
18 Bootstrap 5 Gallery Examples & Freebies 황제낙엽 2023.09.26 119
17 Small Business Template (Start Bootstrap) 황제낙엽 2023.09.25 83
16 Card Component 에 background image 출력하기 황제낙엽 2023.09.08 85
15 Bootstrap Gallery 를 상품 전시용으로 활용하기 위한 분석 황제낙엽 2023.09.06 87
14 dom element 에 collapse 적용하기 file 황제낙엽 2023.08.16 90
13 <i> 태그의 아이콘 종류 찾기 (fontawesome, icon) file 황제낙엽 2023.07.09 81
» Vanilla JS Datepicker 에서 locales 지정 (한국어로 출력) 황제낙엽 2023.06.19 192
11 Feather-icons (svg) 황제낙엽 2023.06.10 94
10 프레임셋처럼 외부페이지를 동적으로 로드하기 (from bing) 황제낙엽 2023.05.24 88
9 Modal 컴포넌트를 스크립트로 감추고 보이기 황제낙엽 2023.05.22 115
8 bootstrap free date-picker 종류 (from bing) 황제낙엽 2023.05.20 87
7 라디오 버튼을 선택 해제하는 샘플 코드 (from bing) 황제낙엽 2023.05.16 77
6 radio group 에서 아이템을 선택한 값 가져오기 황제낙엽 2023.05.15 91
5 부트스트랩(Bootstrap) 테마(Theme), 템플릿(Template) 무료 사이트 file 황제낙엽 2023.04.05 83
4 부트스트랩 4 와 5 버전 차이를 알려줘 (from ChatGPT) 황제낙엽 2023.02.24 264
3 [Bootstrap] 유튜브 강좌들 황제낙엽 2023.02.23 86