fullcalendar在eventDrop之后获取事件的新开始日期

时间:2017-02-03 18:10:51

标签: javascript events fullcalendar

我无法获得拖放事件的新开始日期。

eventDrop: function (event, delta, revertFunc) {
    var droptodate = event.start.format(); // this will give you date where event is about to be dropped to
    droptodate1 = droptodate;

    var dropfromdate = event.start._i;  // this will give you date where event is from
    dropfromdate1 = dropfromdate;
},

droptodate我得到了正确但from从最初来的那天起仍然给了我旧的价值。

我需要格式为yyyy-mm-dd的两个值。

有人可以告诉我为什么日期不更新?

0 个答案:

没有答案