請看看我的fiddle。禁用個月月/ DatePicker的
我有一個monthpicker,只允許用戶提前選擇一年,但我想要的是過去幾個月被禁用,也提前一年後提前幾個月被禁用,但我無法弄清楚如何得到這個上班。
示例場景 當前月份是「十一」這樣的「2015年」月「1至9月」將被禁用,個月11至12月「將爲
我已經試過「2016年」被禁用使用minDate:「0」和maxDate:「1y」但他們不工作。
HTML
<div class="input-group date" style="width: 200px">
<input type="text" id="example1" class="form-control" style="cursor: pointer"/>
<span class="input-group-addon">
<i class="glyphicon glyphicon-calendar"></i>
</span>
</div>
JQuery的
$('#example1').datepicker
({
format: "MM yyyy",
minViewMode: 1,
autoclose: true,
startDate: new Date(new Date().getFullYear(), '0', '01'),
endDate: new Date(new Date().getFullYear()+1, '11', '31')
});
也許在看看這個問題,會給你的想法? - http://stackoverflow.com/questions/21031211/how-to-disable-different-months-in-each-of-the-datepicker-range-years-using-befo – TrojanMorse