3

两年多前,这里有人问过这个问题,但作为菜鸟,我不知道如何使用 Joel Potter 发布的方法作为对这个 URL 中问题的答案:

Fullcalendar jquery plugin 在 nextYear 按钮上显示年份

到目前为止,这是我的代码中的内容:

$('.fc-button-prevYear span').click(function(){
           setYearButtons();
        });

        $('.fc-button-nextYear span').click(function(){
           setYearButtons();
        });

        function setYearButtons(){
            var currentDate = $("#calendar").fullCalendar( 'getDate' );

            // I'm not 100% sure on these class names, but you can inspect the dom and figure those out
            $(".fc-button-prevYear span").text(currentDate.getYear()); 
            $(".fc-button-nextYear span").text(currentDate.getYear() + 2);
        }

如何初始化代码,以便在日历开始时,我将不再看到下一年和上一年的箭头,而是在文本中看到下一年和上一年?

此外,计算年份的逻辑似乎有效,但我看到的文字是错误的。例如,如果当前年份是 2012 年(最初我看到箭头按钮,我需要单击上一年或下一年按钮才能更改为文本),当我单击下一年或上一年转到 2013 年时,我的文本按钮上一年显示 112,下一年显示 114,而不是上一年显示 2012,下一年显示 2014。

4

1 回答 1

9

只需将其添加到日历初始化中:

$('#calendar').fullCalendar({
        theme: false,
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'prevYear, nextYear'
        }, 
        buttonText: {
            prevYear: parseInt(new Date().getFullYear(), 10) - 1,
            nextYear: parseInt(new Date().getFullYear(), 10) + 1
        },
        viewDisplay: function(view) {
            var d = $('#calendar').fullCalendar('getDate');
            $(".fc-button-prevYear .fc-button-content").text(parseInt(d.getFullYear(), 10) - 1);
            $(".fc-button-nextYear .fc-button-content").text(parseInt(d.getFullYear(), 10) + 1);
        }
});
于 2013-03-08T03:20:58.283 回答