我已经制作了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">×</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);
});
});
},
工作正常
什么是奇怪的行为
然后,我点击弹出的关闭按钮进行test1(不删除) - &gt; Popup消失了 - &gt; test1事件仍然在fullcalendar上,因为它应该是。 ====&GT;直到这里工作正常
然后,我点击test2 event-&gt;弹出模式显示为图像2 - &gt;按下删除按钮进行test2 - &gt; [问题]然后删除test1,test2事件
为什么它会在1,2,3,4步之后删除这两个事件?
答案 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
。因此,当您最终单击“删除”时,会执行多个处理程序。)