更改 Header 按钮标签 FullCalendar

Change Header Buttons Label FullCalendar

我正在使用 fullCalendar js 来显示事件。我已将 header 按钮更改为仅显示列表周和列表月,但两个按钮具有相同的标签,即 'list'。有没有办法将这些标签更改为有意义的东西? 这是我使用的配置:

          var options = {
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: 'listWeek,listMonth'
                },
                defaultView: 'listMonth',
               
               }

This is calendar view right now

谢谢

您只需要在声明中添加以下内容:

var options = {
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'listWeek,listMonth'
            },
            defaultView: 'listMonth',
            buttonText: {
                listWeek: 'Week',
                listMonth: 'Month'
           },
      }