我正在使用jquery日期范围选择器,但找不到能给我选择日期范围的事件。
这是我的日期选择器看起来像 https://snag.gy/SqiOPK.jpg
HTML
<div id="example-advanced-daterangepicker" data-step="1" data-intro="This is a date range selector!">
<i class="fa fa-calendar"></i>
<span>April 6, 17 - April 6, 17</span>
<b class="caret"></b>
</div>
答案 0 :(得分:1)
我查看了this网址以找出您的解决方案。
我发现有几个事件用于给出选定的日期范围。
getValue (Function)
您可以在日期范围选择器触发的事件中调用此函数。像,
.bind('datepicker-change',function(event,obj)
{
// It will fire while selecting date range from the picker. SO you can set your code here something to get selected date range
console.log(obj); // By using this object you will sure find some solution to get a range between two dates.
date1: (Date object of the earlier date)
date2: (Date object of the later date),
}
如需更多帮助,您可以查看this网址。这对你有所帮助。感谢。