gpt4 book ai didi

jquery - 完整日历日点击功能

转载 作者:行者123 更新时间:2023-12-01 05:09:01 25 4
gpt4 key购买 nike

我对 FullCalendar 相当陌生,但非常喜欢它的功能。我正在尝试使用 dayClick 函数。也许有人可以引导我走向正确的方向。

我目前有这个:

dayClick: function (date, allDay, jsEvent, view) {
var titleNew = prompt('Event Title:');
var thedate1 = formatDate(date);

$.ajax({
url: "classes/class.Post.php?a=dayClickCalendarEvent",
dataType: 'json',
data: {
title: titleNew,
start: thedate1,
end: thedate1
},
success: function (data, response, event, date) {

$('#calendar').fullCalendar('renderEvent', titleNew);
},
error: function () {
alert("Oops! Something didn't work");
}
});
},

我的问题是无论如何我都无法将事件渲染到日历中。我错过了什么吗?我正在使用 calEvent,我在另一篇 Stack Overflow 帖子中找到了它。

这是我的格式代码:

function formatDate(date1) {
return date1.getFullYear() +'-'
+ (date1.getMonth() < 9 ? '0' : '')
+ (date1.getMonth()+1) +'-'
+ (date1.getDate() < 10 ? '0' : '')
+ date1.getDate() +' '
+ (date1.getHours() < 10 ? '0' : '')
+ date1.getHours() +':'
+ (date1.getMinutes() < 10 ? '0' : '')
+ date1.getMinutes();
}

如有任何帮助,我们将不胜感激。

最佳答案

嘿,我感谢您的回复,我能够使用此代码,并且它的响应非常好!

     dayClick: function (date, allDay, jsEvent, view) {
titleNew = prompt('Event Title:');
var thedate1 = formatDate(date);

$.ajax({
url: "classes/class.Post.php?a=dayClickCalendarEvent",
dataType: 'json',
data: {
title: titleNew,
start: thedate1,
end: thedate1
},
success: function (data, response, event, date) {
//alert("success here");
$('#calendar').fullCalendar('renderEvent',
{
title: titleNew,
start: thedate1,
end: thedate1
}, true);
},
error: function () {
alert("Oops! Something didn't work");
}
});
},

关于jquery - 完整日历日点击功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3392850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com