gpt4 book ai didi

javascript - fullcalendar-仅获取用户选择的事件

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

是否有可能仅通过用户点击获取选定的事件,而不获取 fullcalendar 中已填充的事件?我查看了文档,但找不到太多帮助。

不过,我知道我可以通过以下方式获取所有事件:

$("#calendar").fullCalendar( 'clientEvents' [, idOrFilter ] ) -> Array

但我不想要这个。我当然使用select

另一个值得注意的事情是我想在另一个 JS 文件中使用这个值。所以,

eventClick: function (selectedEvent) {
//selectedEvent.id
//selectedEvent.
}

实际上不适用于我的情况。

这是我的 fullCalendar 配置:

$("#calendar").fullCalendar({
weekends: false,
defaultView: 'agendaWeek',
slotDuration: '00:30', // hours/minutes
allDaySlot: false,
header: {
left: 'today prev,next',
center: 'title',
right: ''
},
height: "auto",
contentHeight: 600,
events: [
{
title : 'event1',
start : '2017-05-01T12:30:00'
},
{
title : 'event2',
start : '2017-05-09T12:30:00',
end : '2010-05-09T13:30:00'
},
{
title : 'event3',
start : '2010-01-09T12:30:00',
allDay : false // will make the time show
}
],
businessHours: [ // specify an array instead
{
dow: [ 1, 2, 3 ], // Monday, Tuesday, Wednesday
start: '08:00', // 8am
end: '18:00' // 6pm
},
{
dow: [ 4, 5 ], // Thursday, Friday
start: '10:00', // 10am
end: '16:00' // 4pm
}
],
dayRender: function( date, cell ) {
alert('Clicked on: ' + date);

alert('Coordinates: ' + cell);

// alert('Current view: ' + view.name);

},
selectable: true,
selectConstraint: "businessHours",
select: function() { ... },

})

最佳答案

尝试使用 eventClick:

eventClick: function (selectedEvent) {
//selectedEvent.id
//selectedEvent.title
}

关于javascript - fullcalendar-仅获取用户选择的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43760045/

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