Materialize datepicker - 将最大日期设置为从另一个日期输入框中选择的最小日期起30天?

时间:2016-07-26 04:23:33

标签: jquery datepicker materialize

我想将最大日期显示为从另一个日期选择器输入框中选定的开始日期起30天。

$('.datepicker').pickadate({ 
        selectMonths: true, // Creates a dropdown to control month
        closeOnSelect: true,
        closeOnClear: true,
        format: 'yyyy-mm-dd',
        onSet: function (ele) {
           if(ele.select){
                  this.close();
           }

        var d1 = $('#reqstartdate').val();
        var d2 = $('#reqenddate').val();

        var date1 = new Date(d1);
        var date2 = new Date(d2);

},
         min: true,
         max:+30,   
}); 

上述代码显示日期输入框的最短日期为今天的日期,以及今天的日期+最多30天。

从文本框中获取日期也包含在上面。

我希望第二个日期距离第一个日期框的输入有+ 30天。 在Materialise datepicker中可以吗?

0 个答案:

没有答案