4

我正在使用日期范围选择器。一切正常。http://www.daterangepicker.com/

现在,需要知道是否可以仅将选择的结束日期更改为早或晚?开始日期将处于选定状态。

例如:http ://www.lufthansa.com/online/portal/lh/sg/homepage (预订航班 - 回程)

HTML:

<input class="form-control input-lg" id="tripOne" name="tripOne" />

JS:

var nowDate = new Date();
var today = new Date(nowDate.getFullYear(), nowDate.getMonth(), nowDate.getDate(), 0, 0, 0, 0);
var maxLimitDate = new Date(nowDate.getFullYear() + 1, nowDate.getMonth(), nowDate.getDate(), 0, 0, 0, 0);

$('input[name="tripOne"]').daterangepicker({
  "autoApply": true,
    "autoUpdateInput": false,
    "minDate": today,
    "maxDate": maxLimitDate,
    "locale": {
        format: 'DD MMM YYYY'
    }
}, function (start, end) {
   $("#tripOne").val(start.format('DD MMM YYYY'));
});  
4

0 回答 0