我正在使用日期范围选择器 javascript 库从用户中选择日期范围
$('#date_range').daterangepicker({
arrows:true,
dateFormat: 'd-M-yy',
rangeSplitter: 'to',
datepickerOptions: {
changeMonth: true,
changeYear: true,
minDate: new Date("01/01/2011") //Account created date
},
closeOnSelect: true,
onChange: function(){
//ajax call goes here
}
});
在我的 ajax 调用中,我正在使用日期范围更新屏幕。但是这个 on change 函数运行两次,ajax 返回旧日期值。如果需要将 ajax 功能与日期范围选择器的更改功能一起使用。
如果有人找到了一次使用 onchange 函数的解决方案,并且从现在到现在都是正确的,请告诉我。提前致谢