如何在Fullcalendar中更改天数语言



谁来帮助我如何改变自定义天数在希伯来语完整日历看到图片在这里

FullCalendar有一个dayCellDidMount选项,该选项在日单元格挂载后触发。https://fullcalendar.io/docs/day-cell-render-hooks

您可以使用此选项将日期文本替换为任何自定义文本。

var calendar = new FullCalendar.Calendar(calendarEl, {
...
dayCellDidMount: function (info) {
var day = moment(info.date).locale('hu').format('DD'); // Get the localized date; hu is for hebrew here. You can use like 'en', 'de'
// Hide the original element
var originElement = info.el.querySelectorAll(".fc-daygrid-day-number");
originElement.forEach(e => e.classList.add("d-none"));
//Insert custom or localized text 
var targetElement = info.el.querySelectorAll(".fc-daygrid-day-top");
targetElement.forEach(e => e.innerHTML = day);
}
});

最新更新