我正在使用这个日历http://dansnetwork.com/mootools/events-calendar/usage/。我不明白如何开始下个月的日历,如果当前月份是 8 月,我想从 9 月开始。
我试过的:
var date = new Date();
var d = date.getDate();
var m = new Date(date.getMonth() +1 );
var y = date.getFullYear();
$('#calendar1').fullCalendar({
editable: true,
events: [
{
title: 'All Day Event',
start: new Date(y, m, 1)
但它不起作用。
谢谢。