您好我试图制作活动日历。 也许有人给我的想法如何,因为我不知道如何自定义日历,我失去了大约2-3天,没有做任何事情 试图自定义fullcalendar而没有。 我希望得到你们的支持 感谢
日历图片我需要的是:
答案 0 :(得分:0)
我已为此date-picker添加了类似的方法。它易于使用。你还需要改变样式表,因为我没有时间。但它让你了解如何开始。
如何使用它?
var datePicker = new Pikaday({
field: document.getElementById('date-picker'),
onSelect: (newDate) => {
// Here you can update this day with setSecondaryConfig method
},
onMonthChange: (year: number, month: number) => {
// here you can call for labels for this month using setSecondaryConfig method
},
onOpen: () => {
// or here you can fetch labels for the first month being shown
}
});
这适用于同步API调用。