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;

};


 

 

번호 제목 글쓴이 날짜 조회 수
47 Chatbot 용 디자인 템플릿 (ChatGPT) file 황제낙엽 2024.01.28 4
46 (Bing) Mustache 의 특징 황제낙엽 2023.12.21 0
45 문자열의 셀렉션 동작 구현 (<p>, <input>) 황제낙엽 2023.10.02 0
44 Bootstrap 5 Gallery Examples & Freebies 황제낙엽 2023.09.26 0
43 Small Business Template (Start Bootstrap) 황제낙엽 2023.09.25 1
42 Card Component 에 background image 출력하기 황제낙엽 2023.09.08 0
41 Bootstrap Gallery 를 상품 전시용으로 활용하기 위한 분석 황제낙엽 2023.09.06 1
40 dom element 에 collapse 적용하기 file 황제낙엽 2023.08.16 1
39 <i> 태그의 아이콘 종류 찾기 황제낙엽 2023.07.09 0
» Vanilla JS Datepicker 에서 locales 지정 (한국어로 출력) 황제낙엽 2023.06.19 11
37 Feather-icons 황제낙엽 2023.06.10 0
36 프레임셋처럼 외부페이지를 동적으로 로드하기 (from bing) 황제낙엽 2023.05.24 1
35 Modal 컴포넌트를 스크립트로 감추고 보이기 황제낙엽 2023.05.22 4
34 bootstrap free date-picker 종류 (from bing) 황제낙엽 2023.05.20 0
33 라디오 버튼을 선택 해제하는 샘플 코드 (from bing) 황제낙엽 2023.05.16 0
32 radio group 에서 아이템을 선택한 값 가져오기 황제낙엽 2023.05.15 1
31 부트스트랩(Bootstrap) 테마(Theme), 템플릿(Template) 무료 사이트 file 황제낙엽 2023.04.05 3
30 부트스트랩 4 와 5 버전 차이를 알려줘 (from ChatGPT) 황제낙엽 2023.02.24 27
29 [Bootstrap] 유튜브 강좌들 황제낙엽 2023.02.23 1
28 [Bootstrap] 부트스트랩 시작하기 (강좌 링크 몇개) 황제낙엽 2023.02.23 2