使用 Jquery 将事件动态插入到完整日历



我在使用 Jquery 将新事件添加到 fullCalendar 时遇到问题。我正在使用Eclipse来开发Web,但根本不熟悉Ajax,而且它不适用于我的eclipse。

一切都写在一个按钮中。

var subject = $("#txtEventName").val();  //the title of the event           
var dateStart = $("#txtDate").val();     //the day the event takes place
var dateEnd = $("#txtDateEnd").val();    //the day the event finishes
var allDay = $("#alldayCheckbox").val(); //true: event all day, False:event from time to time           
var events=new Array();     
event = new Object();       
event.title = subject; 
event.start = dateStart;    // its a date string
event.end = dateEnd;        // its a date string.
event.color = "blue";
event.allDay = false;
events.push(event);
$('#calendar').fullCalendar('addEventSource',events);

检测到错误,但未创建事件。PS:如果在 jQuery 中没有其他方式,我想继续使用数组馈送。

试试这个:

var newEvent = new Object();
newEvent.title = "some text";
newEvent.start = new Date();
newEvent.allDay = false;
$('#calendar').fullCalendar( 'renderEvent', newEvent );

请注意,当您为启动分配值时,它需要采用受支持的格式之一。

您可以指定 IETF 格式的字符串(例如:Wed, 18 Oct 2009 13:00:00 EST)、ISO8601格式的字符串(例如:2009-11-05T13:15:30Z)或 UNIX 时间戳。

相关内容

  • 没有找到相关文章

最新更新