gpt4 book ai didi

jquery 全日历 : operation after data add

转载 作者:行者123 更新时间:2023-12-01 04:25:32 25 4
gpt4 key购买 nike

当我们向 jquery fullcalendar 添加事件时(在可选择模式下)单击或选择日期。如何读取jquery中添加的事件?

最佳答案

编辑 - 在您发表评论后,我认为您必须使用选择功能:

select: function(start, end, allDay) {
var title = prompt('Event Title:');
if (title) {
alert('start:'+start+' end: '+end);
calendar.fullCalendar('renderEvent', {
title: title,
start: start,
end: end,
allDay: allDay
}, true // make the event "stick"
);
}
calendar.fullCalendar('unselect');
},

看看这里的 fiddle ,它会提醒开始和结束日期,但您也可以访问tile和allDay参数。http://jsfiddle.net/SYBsq/

关于jquery 全日历 : operation after data add,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6777310/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com