-2
我正在使用引導程序日曆。過去的日子已經停用了。我想啓用傳遞的日子。我怎樣才能做到這一點。如何在啓動日曆中啓用傳遞日期?
這是我在HTML日曆.....
<input type="text" name="date_from" id="q-checkin" class="input-text full-width dates" placeholder="mm/dd/yy" />
我正在使用引導程序日曆。過去的日子已經停用了。我想啓用傳遞的日子。我怎樣才能做到這一點。如何在啓動日曆中啓用傳遞日期?
這是我在HTML日曆.....
<input type="text" name="date_from" id="q-checkin" class="input-text full-width dates" placeholder="mm/dd/yy" />
嘗試使用startDate
:
$('#q-checkin').datepicker({
startDate: '-3y', //start date will enable passed days of previous three years
format: 'dd-mm-yyyy'
});
哪裏是JS的一部分? –
提供MCVE,很難理解你的期望 –