我正在使用带有singleDatePicker: true
的bootstrap的daterangepicker。
我已经实现了如下:
$('#from_date').daterangepicker({
singleDatePicker: true,
showDropdowns: true,
autoUpdateInput : false,
locale: {
format: 'DD/MM/YYYY',
},
});
当用户清除输入文本框(此处为from_date
)时,我需要清除日期模式中的日期选择。
有没有办法让用户清除文本框并将注意力集中在一起,然后清除日期选择?
答案 0 :(得分:0)
$('#from_date').on('focusout', function () {
if ($(this).val() == '') {
$(this).val('');
//rest of the process or any function call backs goes here
}
});
尝试一下!