我希望以下日期范围从 65 年前开始,到 18 年前结束。相反,minDate 数字被忽略,并设置为结束日期前 10 年。我在 minDate 中输入的任何值都没有区别。
$(function() {
$("#datepicker").datepicker({
changeMonth: true,
changeYear: true,
minDate: "-65y",
maxDate: "-18y"
});
});