0

如何从 onChange 中的 selectedDates 获取日期对象并从中提取月份和日期并将它们放在我需要它们的位置(在另一个单独的 div 中,使用我的样式)

<div>
  <p>CHECK IN</p>
  <input id="" class="datepicker-from" placeholder=" ">
</div>
$(document).ready(function() {
  $('.datepicker-from').flatpickr({
    plugins: [new rangePlugin({
      input: '.datepicker-to'
    })],
    altInput: true,
    altFormat: "M j",
    dateFormat: "m-d",
    position: "below",
    defaultDate: new Date(),
    minDate: "today",
    maxDate: new Date().fp_incr(210) // 14 days from now
  });
});
4

0 回答 0