今天完整日历按钮

问题描述 投票:0回答:1

大家知道如何将“今天”按钮改为大写T的“今天”吗?谢谢!

尝试创建自己的按钮来调用该功能,但我找不到今天的功能。

应该与自定义按钮一起使用,但不起作用:

$(document).ready(function(){
    $('#CalendarioWeb').fullCalendar({
        header:{
            left:'today,prev,next,Today',
            center:'title',
            right:'month,basicWeek,basicDay,agendaWeek,agendaDay'
        },
        customButtons:{
            Today:{
                text:"Today",
                click:function(){
                    "today"
                }
            }
        }
    });
javascript jquery fullcalendar
1个回答
0
投票

抱歉,现在正在合作:

$(document).ready(function(){
    $('#PruebaCalendario').fullCalendar({
        header:{
            left:'today,prev,next,Today',
            center:'title',
            right:'month,basicWeek,basicDay,agendaWeek,agendaDay'
        },
        customButtons:{
            Today:{
                text:"Today",
                click:function(){
                    $('#PruebaCalendario').fullCalendar('today');
                }
            }
        }
    });
});
© www.soinside.com 2019 - 2024. All rights reserved.