我正在尝试使用 fullCalendar 制作时间表网络应用程序
I am trying to make a Timesheet web app using fullCalender
当用户选择事件类型和编号时。下拉列表中的小时数,则应将其添加到日历中。我已经更新了事件侦听器,但仍未显示任何数据。抱歉,这似乎是一个微不足道的问题。我是 Web 应用程序的新手,时间有点紧张。
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek'
},
navLinks: true, // can click day/week names to navigate views
editable: true,
eventLimit: true, // allow "more" link when too many events
});
});
ok1.addEventListener('click',function() {
let date = moment($('#calendar').fullCalendar('getDate'));
let val = document.getElementById('inputGroupSelect02').value;
let desc=document.getElementById('nobh').toString();
$('#calendar').fullCalendar('renderEvent',
$('#calendar').fullCalendar({events: [{
start: date,
title: val,
description: desc
}]}),true);
},true);
感谢@ADyson 以下工作:-
$('#calendar').fullCalendar('renderEvent', { start: date, title: val, description: desc }, true);
当用户选择事件类型和编号时。下拉列表中的小时数,则应将其添加到日历中。我已经更新了事件侦听器,但仍未显示任何数据。抱歉,这似乎是一个微不足道的问题。我是 Web 应用程序的新手,时间有点紧张。
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek'
},
navLinks: true, // can click day/week names to navigate views
editable: true,
eventLimit: true, // allow "more" link when too many events
});
});
ok1.addEventListener('click',function() {
let date = moment($('#calendar').fullCalendar('getDate'));
let val = document.getElementById('inputGroupSelect02').value;
let desc=document.getElementById('nobh').toString();
$('#calendar').fullCalendar('renderEvent',
$('#calendar').fullCalendar({events: [{
start: date,
title: val,
description: desc
}]}),true);
},true);
感谢@ADyson 以下工作:-
$('#calendar').fullCalendar('renderEvent', { start: date, title: val, description: desc }, true);