FullCalendar,dayclick功能

时间:2016-01-05 16:32:13

标签: javascript php fullcalendar

我正在尝试使用FullCalendar插件执行日历。这是我的代码,

 <!DOCTYPE html>
    <html>
    <head>
    <meta charset='utf-8' />
    <link href='fullcalendar.css' rel='stylesheet' />
    <link href='fullcalendar.print.css' rel='stylesheet' media='print' />
    <script src='moment.min.js'></script>
    <script src='jquery.min.js'></script>
    <script src='fullcalendar.min.js'></script>
    <script>

        $(document).ready(function() {

            $('#calendar').fullCalendar({
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: 'month,agendaWeek,agendaDay'
                },

                selectable: true,
                selectHelper: true,
                select: function(start, end, jsEvent, view){
                  window.location = "testing.php";
                },



            });

        });

    </script>
    <style>

        body {
            margin: 40px 10px;
            padding: 0;
            font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
            font-size: 14px;
        }

        #calendar {
            max-width: 900px;
            margin: 0 auto;
        }

    </style>
    </head>
    <body>

        <div id='calendar'></div>
    </body>
    </html>

当我点击日期时,日历会将我重定向到test.php(这就是我想要的)。我如何以一种方式对其进行编码,例如,当用户在1月10日按下时,细节(在数据库中)将被回显到该php。 (testing.php)。

有关我的testing.php文件应如何完成的任何建议?

要添加,它在某种程度上是一个类似于此http://www.w3schools.com/php/php_ajax_database.asp

的功能

0 个答案:

没有答案