在fullcalendar中,我希望每天都有一个可点击的按钮。但是,当在单元格中添加元素时,该按钮会被一个位于其上的表格所覆盖,从而阻止了点击。
代码:
$('#calendar').fullCalendar({
events: [{
start: new Date(),
editable: true,
}],
dayRender: function(date, cell){
$el = $('<a href="http://www.google.com">click</a>');
cell.prepend($el);
}
})