1
<link rel='stylesheet' type='text/css' href='fullcalendar/redmond/theme.css' />
<link rel='stylesheet' type='text/css' href='fullcalendar/fullcalendar.css' />
<script type='text/javascript' src='fullcalendar/jquery/jquery.js'></script>
<script type='text/javascript' src='fullcalendar/jquery/ui.core.js'></script>
<script type='text/javascript' src='fullcalendar/jquery/ui.draggable.js'></script>
<script type='text/javascript' src='fullcalendar/jquery/ui.resizable.js'></script>
<script type='text/javascript' src='fullcalendar/fullcalendar.min.js'></script>

<script type='text/javascript'>

 $(document).ready(function() {

  $('#calendar').fullCalendar({

   theme: true,
   editable: false,
   weekends: false,
   allDaySlot: false,
   allDayDefault: false,
   slotMinutes: 15,
   firstHour: 8,
   minTime: 8,
   maxTime: 17,
   height: 600,
   defaultView: 'agendaWeek',

   events: "json_events.php",

   loading: function(bool) {
    if (bool) $('#loading').show();
    else $('#loading').hide();
   }

  });

 });

</script>

但这些信息不会出现在“议程周”上。谁能告诉我我做错了什么。

我的“json_events.php”代码是:

<?php

 $year = date('Y');
 $month = date('m');

 echo json_encode(array(

  array(
   'id' => 111,
   'title' => "Event1",
   'start' => "$year-$month-22 8:00",
   'end' => "$year-$month-22 12:00",
   'url' => "http://yahoo.com/"
  ),

  array(
   'id' => 222,
   'title' => "Event2",
   'start' => "$year-$month-22 14:00",
   'end' => "$year-$month-22 16:00",
   'url' => "http://yahoo.com/"
  )

 ));

?>

它提出了以下内容:

[{"id":111,"title":"Event1","start":"2010-03-22 8:00","end":"2010-03-22 12:00","url":"http:\/\/yahoo.com\/"},{"id":222,"title":"Event2","start":"2010-03-22 14:00","end":"2010-03-22 16:00","url":"http:\/\/yahoo.com\/"}]

请如果有人可以帮助或建议某人帮助我。

谢谢,丹尼斯

4

2 回答 2

7

将事件的“allDay”属性设置为空字符串。(设置为 false 不起作用。)

请参阅:将 jQuery fullcalendar 集成到 PHP 网站中

于 2011-01-12T14:15:11.293 回答
2

您需要将 allDay 指定为 false,例如:

[
    {
        "id": 111,
        "title": "Event1",
        "start": "2010-03-22 08:00",
        "end": "2010-03-22 12:00",
        "url": "http://yahoo.com/",
        "allDay": false
    },
    {
        "id": 222,
        "title": "Event2",
        "start": "2010-03-22 14:00",
        "end": "2010-03-22 16:00",
        "url": "http://yahoo.com/",
        "allDay": false
    }
]

请参阅:将 jQuery fullcalendar 集成到 PHP 网站中

于 2010-03-23T08:56:43.753 回答