问题事件单击事件,单击模式重定向到页面未定义

时间:2019-06-26 12:32:38

标签: javascript jquery fullcalendar fullcalendar-3

当我在日历事件中脉动时,模式打开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);

        }

    });

});

0 个答案:

没有答案