我試圖fullcalendar和日期選擇器連接在一起,形成了自己一個很好的日曆,但我遇到了下面的錯誤與我的代碼:
錯誤信息:
$( 「#日期選擇器」)日期選擇器是不是一個函數
這裏是我的代碼:
<link rel='stylesheet' type='text/css' href='../fullcalendar/fullcalendar.css' />
<link rel='stylesheet' type='text/css' href='../fullcalendar/fullcalendar.print.css' media='print' />
<link href="../scripts/jquery-ui-1.7.3.custom.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="../Styles/dark-hive/jquery.ui.all.css">
<script src="../jquery/jquery-1.7.1.js"></script>
<script type='text/javascript' src='../jquery/jquery-ui-1.8.17.custom.min.js'></script>
<script src="../jquery/ui/jquery.ui.core.js"></script>
<script src="../scripts/ui/jquery.ui.datepicker.js"></script>
<script type='text/javascript' src='../fullcalendar/fullcalendar.min.js'></script>
<script type='text/javascript'>
$(function() {
$('#calendar').fullCalendar({
theme: true,
header: {
left: '',
center: '',
right: ''
},
defaultView: 'agendaDay',
editable: false,
events: "../fullcalendar/JSONcreator"
});
$('#datepicker').datepicker({
inline: true,
onSelect: function(dateText, inst) {
var d = new Date(dateText);
$('#calendar').fullCalendar('gotoDate', d);
}
});
})
</script>
另外,有什麼辦法擺脫頂部的一些JQuery腳本調用?有很多,看起來很雜亂,但我是JQuery的新手。
可能的重複http://stackoverflow.com/questions/1212696/jquery-ui-datepicker-datepicker-is-not-a-function – 2012-02-27 16:35:34
這是一個不同的問題。 – 2012-02-27 16:37:50
不應該在您的fullcalendar插件之前加載jquery嗎? – 2012-02-27 16:38:14