fullcalendar通过弹出模态奇怪行为删除事件

时间:2015-05-15 13:57:38

标签: javascript jquery popup fullcalendar

我已经制作了fullcalendar事件删除弹出模式。 这部分有效,但有一些奇怪的行为。 我是这个的新手,所以我尝试了几种不同的方式,但我无法摆脱困境。 并且我不知道如何让jsfiddle重现确切的行为而不复制我的所有代码。但我的代码包含很多额外的东西。所以我无法提供jsfiddle。此处仅说明相关代码。但我认为对此有很好经验的人。我认为他们可以很容易地看透代码。我非常感谢您的建议。我花了太多时间。 奇怪的行为是弹出模式删除事件,它删除之前由关闭按钮关闭的其他事件。以下说明包含详细信息。

我这样做了:

1)弹出模式的div代码

<div class="modal fade" id="modalRemove" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
      </div>
      <div class="modal-body">
       <h4>Are you sure to remove the event?</h4>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" id="close" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-danger" id="removeBtn" data-dismiss="modal">Remove</button>
      </div>
    </div>
  </div>
</div>

2)点击事件时 - >弹出模式显示 - &gt;然后可以选择(单击)关闭按钮或删除弹出模式

上的按钮
eventRender: function (event, element){  
    element.click(function() {
        $('#modalRemove').modal();
        $('#eventTitle').html(event.title);
        $("#removeBtn").click(function() {  
             $('#calendar').fullCalendar('removeEvents',event._id); 
        });
    });
},

工作正常

  1. Popup模式正在运作
  2. 关闭按钮,删除按钮正在运行
  3. 当弹出模式上按下删除按钮时,
  4. 事件被删除

    什么是奇怪的行为

    1. 让我们说有两个事件:test1,test2(image1)
    2. enter image description here

      1. 我点击了test1事件,然后出现了弹出模式(image2)
      2. enter image description here

        1. 然后,我点击弹出的关闭按钮进行test1(不删除) - &gt; Popup消失了 - &gt; test1事件仍然在fullcalendar上,因为它应该是。 ====&GT;直到这里工作正常

        2. 然后,我点击test2 event-&gt;弹出模式显示为图像2 - &gt;按下删除按钮进行test2 - &gt; [问题]然后删除test1,test2事件

        3. 为什么它会在1,2,3,4步之后删除这两个事件?

1 个答案:

答案 0 :(得分:1)

试试这个:

eventRender: function(event, element) {
  element.attr('href', 'javascript:void(0);');
  element.click(function() {
    //set the modal values and open
    $('#eventTitle').html(event.title);

    // Rebind the Remove button click handler
    $("#removeBtn").off('click').on('click', function(e) {
        $('#calendar').fullCalendar('removeEvents', event._id);
    });

    $('#modalRemove').modal();
  });
}

请注意,在绑定特定事件之前,所有click事件是通过#removeBtn按钮从off()按钮取消绑定的。

(在您的代码中,每次单击日历中的事件时,此事件的新click处理程序都绑定到#removeBtn。因此,当您最终单击“删除”时,会执行多个处理程序。)