在您設置$('#toDate').datepicker()
的時間,$('#fromDate')
值爲空。
應設置在開始時默認startDate
和endDate
變量,並添加changeDate
事件偵聽器,您datepickers。
例如:
// set default dates
var start = new Date();
// set end date to max one year period:
var end = new Date(new Date().setYear(start.getFullYear()+1));
$('#fromDate').datepicker({
startDate : start,
endDate : end
// update "toDate" defaults whenever "fromDate" changes
}).on('changeDate', function(){
// set the "toDate" start to not be later than "fromDate" ends:
$('#toDate').datepicker('setStartDate', new Date($(this).val()));
});
$('#toDate').datepicker({
startDate : start,
endDate : end
// update "fromDate" defaults whenever "toDate" changes
}).on('changeDate', function(){
// set the "fromDate" end to not be later than "toDate" starts:
$('#fromDate').datepicker('setEndDate', new Date($(this).val()));
});
你能告訴我們什麼是您的問題是什麼呢? – Vivekh 2015-02-07 10:59:42
迄今爲止沒有選擇開始日期(即從日期值) – 2015-02-07 11:04:43