1

我正在使用 bootstrap 的 daterangepicker 和singleDatePicker: true.

我已经实现了它,如下所示:

$('#from_date').daterangepicker({
    singleDatePicker: true,
    showDropdowns: true,
    autoUpdateInput : false,
    locale: {
        format: 'DD/MM/YYYY',
    },         
});

当用户清除输入文本框(此处from_date)时,我需要清除日期模式中的日期选择。

有什么办法可以让用户清除文本框并聚焦然后清除日期选择?

4

1 回答 1

0
$('#from_date').on('focusout', function () {
    if ($(this).val() == '') {
        $(this).val(''); 
       //rest of the process or any function call backs goes here
    }
});

尝试这个!

于 2019-03-26T18:28:27.633 回答