2015-12-21 60 views
-2

我正在使用引導程序日曆。過去的日子已經停用了。我想啓用傳遞的日子。我怎樣才能做到這一點。如何在啓動日曆中啓用傳遞日期?

這是我在HTML日曆.....

<input type="text" name="date_from" id="q-checkin" class="input-text full-width dates" placeholder="mm/dd/yy" /> 
+1

哪裏是JS的一部分? –

+1

提供MCVE,很難理解你的期望 –

回答

0

嘗試使用startDate

$('#q-checkin').datepicker({ 
    startDate: '-3y', //start date will enable passed days of previous three years 
    format: 'dd-mm-yyyy' 
}); 
相關問題