Put age restriction of 18 years - Bootstrap Datepicker

后端 未结 3 633
攒了一身酷
攒了一身酷 2021-01-24 11:55

I am using Bootstrap Datepicker.

I want to put an Age Restriction of 18 Years.

Dates less than Age 18 Years from current date should be disabled.

3条回答
  •  無奈伤痛
    2021-01-24 12:28

    You can use yearRange, to let users choose only years which comes under 18+ from current year. Like,

    jQuery('#dateob').datepicker({
    changeMonth: true,
    changeYear: true,
    yearRange: '-110:-18',
    showButtonPanel: true
    });
    

提交回复
热议问题