日期范围选择器 - 日历标题本地化格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期范围选择器 - 日历标题本地化格式相关的知识,希望对你有一定的参考价值。
将本地化应用于角度日期范围选择器时,日历标题的日期格式不正确。日期应显示为YYYY,MM,但显示为MM,YYYY。我正在使用moment()。format('ll')在文本输入中显示本地化格式,但使用日期范围选择器locale.format选项对日历日期格式没有任何影响。
var dateOptions = {
locale: {
format: 'll'
}
};
答案
更新了daterangepicker.js,如下所示:
//在第719行附近添加了新的var
var calMonth = moment([calendar[1][1].year(), calendar[1][1].month()]).format("L");
//第754行
html += '<th colspan="5" class="month">' + calMonth + '</th>';
以上是关于日期范围选择器 - 日历标题本地化格式的主要内容,如果未能解决你的问题,请参考以下文章