如何在全日历中查找删除事件日期的日期
how to find day of dropped event date in fullcalnedar
我在我的 project.I 中使用 fullcalendar v2.0.0 必须提醒 "You can not move this event to sunday." 当任何事件在星期天拖放时。
eventDrop : function(event,revertFunc)
{
var day = event.start.day // my assumption
if(day == "Sunday")
{
alert("You can not move this event to sunday.");
revertFunc();
}
else
{
//Here is my ajax to update DB
}
}
我在 google 中尝试过,但找不到。
告诉我如何实现这个?
代码将是可观的!
您应该先阅读 moment.js
文档。您可以使用以下代码格式化日期:event.start.format("dddd");
实施:
eventDrop : function(event, delta, revertFunc, jsEvent, ui, view)
{
var day = event.start.format("dddd"); // this will give you day
if(day == "Sunday")
{
alert("You can not move this event to sunday.");
revertFunc();
} else {
//Here is my ajax to update DB
}
}
注意:您放错了 revertFunc
函数,请尝试上面给出的格式。
我在我的 project.I 中使用 fullcalendar v2.0.0 必须提醒 "You can not move this event to sunday." 当任何事件在星期天拖放时。
eventDrop : function(event,revertFunc)
{
var day = event.start.day // my assumption
if(day == "Sunday")
{
alert("You can not move this event to sunday.");
revertFunc();
}
else
{
//Here is my ajax to update DB
}
}
我在 google 中尝试过,但找不到。
告诉我如何实现这个?
代码将是可观的!
您应该先阅读 moment.js
文档。您可以使用以下代码格式化日期:event.start.format("dddd");
实施:
eventDrop : function(event, delta, revertFunc, jsEvent, ui, view)
{
var day = event.start.format("dddd"); // this will give you day
if(day == "Sunday")
{
alert("You can not move this event to sunday.");
revertFunc();
} else {
//Here is my ajax to update DB
}
}
注意:您放错了 revertFunc
函数,请尝试上面给出的格式。