bootstrap-datepicker 选择的日期返回 null

问题描述

在我的 bootstrap v4.3.1 中,我有 bootstrap-datepicker v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)。

我在下面的 HTML 中有日历:

<div class="card-body">
  <div id="select-date" class="calendar"></div>
</div>

以下是我构建日历的方式:

let calendar = new calendar({
  selector: "#select-date",pastDates: false,dateFormat: "dd-M-yyyy"
});

使用下面的我尝试选择的日期,但它返回空值。

$(document).ready(function () {
  $("#select-date").on("click",function () {
    var selected = $(this).datepicker("getDate");
    alert(selected);
  });
});

如何以 dd-M-yyyy 格式显示所选日期?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)