我正在使用日期范围选择器
代码在这里:
<input type="text" name="sample" id="sample" class="date_css" value="Select a date" />
查询在这里:
<script type="text/javascript">
$(function(){
$('#sample').daterangepicker({
arrows:true,
dateFormat: 'd-M-yy',
rangeSplitter: 'to',
datepickerOptions: {
changeMonth: true,
changeYear: true,
minDate: new Date("01/01/2011") //Account created date
},
});
});
</script>
问题: datepickerOptions
选项类似于在 jquery ui 的 datepicker 中使用的相同选项。当用户选择特定范围内的日期时,我如何使用最小最大日期选择。(即如何在onSelect
选择范围内使用选项datepickerOptions
并限制选择范围)
帮我
预先感谢...