包含现场活动的完整日历
我需要在 live()
方法上触发 FullCalendar。所以,我尝试了这个:
$('.full-calendar').live('fullCalendar', function(){
return { header : .... //options here }
});
但这不起作用。您认为有可能实现这一目标吗?
I need to fire FullCalendar on live()
method. So, I tried this:
$('.full-calendar').live('fullCalendar', function(){
return { header : .... //options here }
});
But this doesn't work. Do you think is possible to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
fullcalendar
不是.live()
支持的事件参考。实际上,这个根本不是一个事件(除非您自己创建它,但.live()
不会支持它。您的完整日历创建必须是由真实事件触发(单击、双击...)
您可能可以使用类似以下内容的内容:
fullcalendar
is not a supported event by.live()
ref. Actually, this is not an event at all (unless you created it by yourself but it wouldn't then be supported by.live()
.Your full calendar creation must be triggered by a real event (click, double-click,...)
You could probably use something like: