显示日期格式为2017年4月

时间:2017-04-21 07:38:05

标签: javascript codeigniter datepicker

我现在仅在数据库中插入日期和月份,此日期以此格式插入 04-17

如何将04-17转换为2017年4月?

$(function() {
  $('.monthPicker').datepicker({
    changeMonth: true,
    changeYear: true,
    showButtonPanel: true,
    dateFormat: 'MM yy'
  }).focus(function() {
    var thisCalendar = $(this);
    $('.ui-datepicker-calendar').detach();
    $('.ui-datepicker-close').click(function() {
      var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
      var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
      thisCalendar.datepicker('setDate', new Date(year, month, 1));
    });
  });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<div class="form-group">
  <label for="field-2" class="col-sm-3 control-label">Month</label>
  <input name="myDate" class="form-control monthPicker" required>
</div>
视图部分的图像 enter image description here

0 个答案:

没有答案