0
我試圖建立一個網頁,日曆,我的問題是,我不知道如何organizr的inclussions讓我不明白的錯誤,這是我的<head>
建立一個網站使用fullcalendar
<head runat="server">
<title></title>
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />
<link href="fullcalendar/fullcalendar.css" rel="stylesheet" type="text/css" />
<script src="jquery/jquery-1.8.1.min.js" type="text/javascript"></script>
<script src="fullcalendar/fullcalendar.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
// put your options and callbacks here
})
});
</script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
當我的頁面開始,我得到說Microsoft JScript runtime error: '$' is undefined
一個錯誤,它突出了黃色整個jQuery的(它與錯誤的彈出)。我能做些什麼來避免錯誤?,我正在註冊jQuery,因爲您可以看到,所以不知道爲什麼會出現這個錯誤。
謝謝你,我grately感謝您的幫助。
嘗試在'noConflict'模式使用jQuery。 –
並確保您的jQuery路徑有效。也許你需要'/ jquery/jquery-1.8.1.min.js'而不是'jquery/jquery-1.8.1.min.js' ... –