Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/jquery-ui/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
fullcalendar jquery不适用于远程json源_Jquery_Jquery Ui_Jquery Plugins - Fatal编程技术网

fullcalendar jquery不适用于远程json源

fullcalendar jquery不适用于远程json源,jquery,jquery-ui,jquery-plugins,Jquery,Jquery Ui,Jquery Plugins,这是我的密码 $('#calendar_div').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month,basicWeek,basicDay' }, selectable: true, selectHelper: true

这是我的密码

$('#calendar_div').fullCalendar({
header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,basicWeek,basicDay'
            },
            selectable: true,
            selectHelper: true,
            events:'/appt_get',
height: $("#calendar_div").height(),
         width: $("#calendar_div").width()-500,
editable: true,
});
未显示此事件。但是,如果我按照下面的方式输入数据,它就可以工作,而不是事件前面的链接。这与从链接中获得的数据相同

[{"end": "2013-06-06 12:00:00", "title": "this is again a test", "start": "2013-06-06 09:00:00"}, {"end": "2013-06-09 14:59:11", "title": "testing this system", "start": "2013-06-09 14:14:11"}]