选择结束日期

时间:2014-11-21 12:45:22

标签: date time fullcalendar

当我在Fullcalendar中选择日期时,日期将在午夜结束。如何更改默认的结束日期和时间?我希望它仅在所选日期的上午9:00结束。

var startDate =$.fullCalendar.moment(start).format('MM/DD/YYYY hh:mm a');  // Create a clone
start.stripTime();        // The time should already be stripped but lets do a sanity check.
start.time('08:00:00');   // Set a default start time.
start.hasTime();

var endDate = $.fullCalendar.moment(end).format('MM/DD/YYYY hh:mm a');
end.stripTime();        // The time should already be stripped but lets do a sanity check.
end.time('09:00:00');
end.hasTime();

1 个答案:

答案 0 :(得分:0)

是的,天通常在午夜结束:)

您可以做的是限制在fullCalendar中显示的时间。 您可以设置属性minTimemaxTime

类似的东西:

$('#calendar').fullCalendar({
    minTime: "08:00:00", // Duration object, default: "00:00:00"
    maxTime: "09:00:00"  // Duration object, default: "24:00:00"
});