我嘗試使用fullcalendar製作調度程序。我找不到使用vb.net的教程。所以我按照這個教程A complete web diary system for jQuery and C# MVC將c#代碼轉換成vb.net。但我有問題要顯示日曆。我已將fullcalendar.js添加到我的腳本文件夾,並將fullcalendar.css添加到內容文件夾中。但結果沒有顯示。空白頁。這是我的html代碼:VB.Net中的fullcalendar ASP MVC
<div class="row">
<div id='calendar' style="width:65%"></div>
<script>
$(document).ready(function() {
$('#calendar').fullcalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'agendaDay',
editable: true,
allDaySlot: false,
selectable: true,
slotMinutes: 15,
});
})
</script>
您是否得到了這個工作? –
@AllyMurray nope – rodgersmith
你還在空白頁嗎?控制檯中是否有錯誤? –