检测点击背景事件

时间:2014-12-08 13:44:02

标签: fullcalendar

我有一个Fullcalendar日历,我在其中添加了一些背景事件。这些背景事件表示无法单击或拖入的插槽。有没有办法检测到这一点(用户点击了背景事件)?

1 个答案:

答案 0 :(得分:12)

后台事件呈现为DIV,类名为fc-bgevent。

我检测点击背景事件的代码是:

element.fullCalendar({ 
    ...
    dayClick: function(date, jsEvent, view) {
        if (jsEvent.target.classList.contains('fc-bgevent')) {
            alert('Click Background Event Area');
        }
    },
    ...
});