Fullcalendar:如何将“链接”项添加到自定义按钮

时间:2016-06-30 10:04:06

标签: jquery fullcalendar

我对fullcalendar有疑问。我也是它的初学者。我有一个自定义按钮,我现在想要的是“点击”按钮它应该转到一个新页面。它应通过普通<html>按钮的锚标记添加。但是,我无法使用完整日历中的自定义按钮获取如何操作

完整日历脚本如下: -

    $(document).ready(function() {
        $('#calendar').fullCalendar({ 
      customButtons: {
        EventButton: {
            text:'Add Event',
            click:function(event, jsEvent, view){
                   $('#modal_calendar').modal('show');
          }
        }
      },

    utc: true, 
    header: { 
    left: 'prev,next today EventButton', 
    center: 'title', 
    right: 'month,agendaWeek,agendaDay' 
    },   
   }
   });

enter image description here

1 个答案:

答案 0 :(得分:2)

不知道我是否猜对了。但我假设你只想在点击你的事件按钮时导航到另一个页面。 只需使用&#34; window.location.href&#34;属性。这会导航您到那里给出的URL。

 $(document).ready(function() {
    $('#calendar').fullCalendar({ 
       customButtons: {
          EventButton: {
          text:'Add Event',
          click:function(event, jsEvent, view){
               window.location.href = 'https://www.google.com';
          }
       }
     },
     utc: true, 
     header: { 
       left: 'prev,next today EventButton', 
       center: 'title', 
       right: 'month,agendaWeek,agendaDay' 
     },   
  })
});