1
因此,如果我的開始日期是:04/22/2010
,那麼我的結束日期選擇可以高達04/22/2011
,並且在04/22/2011
之後的日期都是禁用的。JQuery datePicker:開始/結束日期應該在一年之內
這裏是我有兩個選擇開始和結束日期:
$(document).ready(function() {
$('#endDate').datepicker({ showOn: 'button',
buttonImage: '../images/Calendar.png',
buttonImageOnly: true, onSelect: function() { },
onClose: function() { $(this).focus(); }
});
$('#startDate').datepicker({ showOn: 'button',
buttonImage: '../images/Calendar.png',
buttonImageOnly: true, onSelect:
function (dateText, inst) {
$('#endDate').datepicker("option", 'minDate', new Date(dateText));
}
,
onClose: function() { $(this).focus(); }
});
});
謝謝尼克.... – 2010-04-23 03:00:25