FullCalendar eventClick获取的是undefined
时间: 2024-03-13 22:23:14 浏览: 87
fullcalendar日历 可点击事件
5星 · 资源好评率100%
这可能是因为您没有正确设置事件源。请确保您在FullCalendar初始化代码中正确设置了事件源,例如:
```js
$('#calendar').fullCalendar({
events: [
{
title: 'Event 1',
start: '2019-01-01'
},
{
title: 'Event 2',
start: '2019-01-05'
}
],
eventClick: function(event) {
console.log(event.title); // 如果事件源正确设置,您应该能够正确获取事件标题
}
});
```
如果您仍然无法获取事件属性,请检查FullCalendar版本和文档以查看是否有任何更改。
阅读全文