如何在日期选择器中将日期格式(MM / DD / YY)更改为(DD / MM / YYYY)

时间:2018-08-24 18:54:39

标签: javascript jquery

this.locale = {
        direction: 'ltr',
        format: moment.localeData().longDateFormat('L'),
        separator: ' - ',
        applyLabel: 'Apply',
        cancelLabel: 'Cancel',
        weekLabel: 'W',
        customRangeLabel: 'Custom Range',
        daysOfWeek: moment.weekdaysMin(),
        monthNames: moment.monthsShort(),
        firstDay: moment.localeData().firstDayOfWeek()
    };

现在日期格式为MM / DD / YYYY。如何将日期格式更改为DD-MM-YYYY

1 个答案:

答案 0 :(得分:0)

使用Datepicker的 dateFormat 选项:

$( ".selector" ).datepicker({
  dateFormat: "dd-mm-yy"
});

更多使用说明以及指向所有不同格式选项的链接可以在这里找到:http://api.jqueryui.com/datepicker/#option-dateFormat