Datepicker中的月份+年份范围

时间:2014-09-18 18:27:24

标签: jquery jquery-ui-datepicker

我知道我们可以在Jquery日期选择器中设置年份范围如下:

$("#calendarInput").datepicker({
            changeMonth: true,
            changeYear: true,
            yearRange: '2010:2014'
        });

我的问题是:如果我希望范围只允许提前一个月和一年之间的日期超过今天的日期。

关于如何实现这一目标的任何建议?

1 个答案:

答案 0 :(得分:0)

Official Documentation中所述,您可以使用minDate和maxDate
在你的情况下,从现在起1年之前的一个月,它将是:

$("#calendarInput").datepicker({
            changeMonth: true,
            changeYear: true,
            minDate:'-1M',
            maxDate:'+1Y',
});