当我在日历事件中脉动时,模式打开0.1秒,然后自动重定向到未定义的页面。
我想知道如何解决它,以打开模式窗口并将我发送到未定义的页面。
通过单击事件,重定向到:
https://www.domain.es/folder/admin/undefined
$( document ).ready(function() {
$('#calendarioWeb').fullCalendar({
// Header del calendario
header:{
left: 'today,prev,next',
center: 'title',
right: 'month, agendaWeek, agendaDay'
},
// Click para saber el dia que estas y abrir la ventana modal
dayClick:function(date,jsEvent,view){
//alert("Selección: " + date.format());
$(this).css('background-color','red');
$("#tarea").modal();
},
eventSources:[{
events: [
{
id: 'a',
title: 'Matenimiento de plagas',
descripcion: 'Mensual 5',
start: '2019-06-26',
end: '2019-06-29',
color: "blue",
textColor: "white"
}
],
color: "black",
textColor: "white"
}],
eventClick: function(calEvent, jsEvent, view) {
$("#tarea").modal('show');
$('#tituloEvento').html(calEvent.title);
$('#descripcionEvento').html(calEvent.descripcion);
}
});
});