在 FullCalendar 中将时区设置为德国

Set Time Zone To Germany in FullCalendar

我的网站托管在亚洲国家/地区的服务器上。我想将显示事件的时区更改为德国,但不幸的是它不起作用。 我在 fullCalendar 中使用时区:'Europe/Berlin' 但是这个代码不起作用! 谢谢

编辑:

a.$calendarObj = a.$calendar.fullCalendar({
                slotLabelFormat: 'HH:mm',
                slotDuration: "00:10:00",
                minTime: "00:00:00",
                maxTime: "23:59:00",
                defaultView: "month",
                allDaySlot: 0,
                handleWindowResize: !0,
                height: l(window).height() - 200,
                header: {
                    left: "prev,next today",
                    center: "title",
                    right: "month,agendaWeek,agendaDay"
                },
                events: "/Calender/GetEvents",
                editable: 1,
                droppable: 1,
                eventLimit: 1,
                selectable: 0,
                displayEventTime: 1,
                timezone: 'Europe/Berlin'
});

不适合我。 我更改时区:

timezone: 'Europe/Berlin'timezone: 'local'

然后从德国购买新服务器并修复它。