我的fullcalendar脚本位于单独的文件中,并且已经设置了“ eventAfterAllRender”。
现在在另一个js文件中,我尝试触发在加载页面上的按钮上单击,在同一页面上也有fullcalendat。
因此,当我运行代码时,在加载时,不会呈现事件。我想要的是像
$("calendar").fullCalendar({
eventAfterAllRender: function() {$("#button").click();}
})
但是发生的是它将覆盖我的fullCalendar的eventAfterAllRender中已经存在的默认函数。
我要在我的
eventAfterAllRender
中扩展fullcalendar
选项,然后在执行eventAfterAllRender中的默认功能之后,
$("#button).click()
。这怎么可能? :)
最佳答案
在您的代码中,您有两个错误。
$("calendar").fullCalendar({
eventAfterAllRender: function(){
$("#button").click();
}
});