jQuery FullCalendar的日单元格中的可编辑<input>字段不再起作用

问题描述

我继承了使用FullCalendar v1.6.4的应用程序。

在FullCalendar中,按月查看时,每天的单元格都包含一个“输入”字段,该字段可以完全单击和编辑。

此后,我已升级到FullCalendar v3.9.0。问题是,“输入”字段不再可单击或可编辑。

这是我的代码

$('#calendar').fullCalendar({
     dayRender: function (date,cell) {
          if (!$(cell).hasClass("fc-other-month")) {
               $(cell).append("<div class=Input-outer><input data-date='" + $(cell).attr("data-date") + "' type='number' step='0.25' min='0.25' max='24' onkeyup='SummarySection(this)'  class='calenderControl'/></div>");
          }
     }
});

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)