在选择方法上,我正在重新处理一个事件。如何获取元素,即 html ELEMENT
$('#calendar').fullCalendar({
header: {},
select: function (start, end, allDay, event, resourceId) {
calendar.fullCalendar('renderEvent',
{
title: "tttttttt",
start: start,
end: end,
allDay: allDay,
resourceId: resourceId
},
true // make the event "stick"
);
calendar.fullCalendar('unselect');
}
我需要在 renderdEvent 上创建一个上下文菜单。为了做到这一点,我需要它的 html 元素。我怎么才能得到它?非常感谢帮助