gpt4 book ai didi

php - Bootstrap 完整日历不适用于日选项卡

转载 作者:搜寻专家 更新时间:2023-10-31 21:50:23 24 4
gpt4 key购买 nike

我的日历工作正常。但在一天部分,它不显示从开始时间到结束时间的事件,它仅在全天显示。

我是新手,请帮助我,在此先感谢。

<div id="fullCalModal"  class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span> <span class="sr-only">close</span></button>
<h4 id="modalTitle" style="text-align: center;" class="modal-title"></h4>
</div>
<h6>Description: </h6> <div id="modalBody" class="modal-body"></div><hr>
<h6>Start Time: </h6><div id="starttime" class="modal-body"></div>
<h6>End Time: </h6><div id="endtime" class="modal-body"></div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script type="text/javascript">

$(document).ready(function()
{
var currentDate = '<?php echo date('Y-m-d'); ?>';
$('#custom-calendar').fullCalendar(
{
header:
{
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay',
},
defaultDate: currentDate,
businessHours: true,
editable: true,
events: <?= $response ?>,
eventClick: function(events) {
$('#fullCalModal').modal('show');
$('#modalTitle').html(events.title);
$('#modalBody').html(events.details);
$('#starttime').html(events.stime);
$('#endtime').html(events.etime);

}
});
});
</script>

输出

在这张图片中,我的日历的日期选项卡中没有显示开始时间到结束时间选择。如果开始日期是从 2 点开始,结束日期是 5 点,我想要一个选择。

Not working With day

最佳答案

需要将allDay属性设置为false,通常配置默认为true;来自文档:参见 Answer Here

关于php - Bootstrap 完整日历不适用于日选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45005136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com