我无法获得拖放事件的新开始日期。
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
的两个值。
有人可以告诉我为什么日期不更新?