- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 chrome、Fullcalendar 3.4.0 并尝试过 jQuery 1.11.0、2.2.4、3.2.1。我正在尝试这样,但它不起作用。请帮助我。
$('#calendar').fullCalendar({});
$('#calendar').fullCalendar('updateEvent', {
title: 'dddd',
start: '2017-07-16'
});
Uncaught TypeError: Cannot read property 'clone' of undefined
最佳答案
正如文档中提到的:https://fullcalendar.io/docs/event_data/updateEvent/
event
must be the original Event Object for an event, not merely a reconstructed object. The original Event Object can obtained by callbacks such as eventClick, or by the clientEvents method.
您似乎正在向它传递一个您刚刚从无到有创建的任意对象。 FullCalendar 无法将其与日历上的现有事件匹配以更新该事件。
很难知道,因为您为问题提供的上下文太少,但如果您尝试在日历上创建新事件,那么正确使用的方法是 renderEvent: https://fullcalendar.io/docs/event_rendering/renderEvent/
关于javascript - FullCalendar updateEvent 不起作用 : Cannot read property 'clone' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45209839/
我正在使用 updateEvent 方法在周 View 中动态更新事件。 $('#calendar').fullCalendar( 'updateEvent', event); 如果我更新事件的日期,
我正在使用 chrome、Fullcalendar 3.4.0 并尝试过 jQuery 1.11.0、2.2.4、3.2.1。我正在尝试这样,但它不起作用。请帮助我。 $('#calendar').f
我试图在 updateEvent() 内传递事件名称和startDate来更新当前事件。正确吗? $('#fullCalendar').fullCalendar('updateEvent',Diwal
此问题与 Kenny Kerr 在“Excel RTD 服务器:C# 接口(interface)”上的博文有关,该博文可在 here 中找到。 ,这应该允许您在不包含对任何特定 Excel 类型库的引
我是一名优秀的程序员,十分优秀!