日期范围选择器中的最小最大日期范围选择
我正在使用日期范围选择器
代码在这里:
<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中使用的相同选项。当用户选择特定范围内的日期时,如何使用最小最大日期选择。 (即如何在datepickerOptions
中使用onSelect
选项并限制选择范围)
帮助我
提前感谢...
I am using Date Range Picker
Codes are here:
<input type="text" name="sample" id="sample" class="date_css" value="Select a date" />
Query is here:
<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>
Question: datepickerOptions
Options are similar to same option using in datepicker in jquery ui. How can i use min max date selection while user selects date in particular range. (ie How to use onSelect
Option within datepickerOptions
and to restrict a range of selection)
Help Me
Thank in Advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 datepicker 最小值最大值 和 datepicker 日期范围。
我认为你想要的部分是:
然后你将它与“minDate”和“maxDate”选项结合起来。
See datepicker min max and datepicker date-range.
The part you want is i think:
Then you combine it with "minDate" and "maxDate" options.