简体   繁体   中英

Bootstrap datepicker: Start picking date from year

Normally when selecting dates from immediate vicinity of 'today', default behaviour (picking a day of month) works well but when picking birthdays I want the user to start picking the date from years. I looked at the docs but couldn't find any option to do this. I want the datepicker to open with years selection first. As shown in this picture:

在此处输入图片说明

I'm using this plugin: https://bootstrapdatepicker.readthedocs.io/en/latest/

Use startView option (0-days, 1-months, 2-years, see plugin docs):

$('#date').datepicker({
    startView:2//
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM