我正在研究Adam Shaw(http://arshaw.com/fullcalendar/)对FullCalendar的实现。
每个用户都有自己的个人日历,默认情况下会通过JSON加载:
$('#calendar').fullCalendar({
header: {
left: false,
center: 'title',
right: false
},
editable: false,
events: 'http://WEBSERVER.com/calendar/json/<?=$gid?>'
});
(calendar / json /是一个从MySQL查询结果生成JSON的PHP文件)
但是,也有共享日历。可用的日历显示为按钮列表,如下所示:
<div class="btn-group" id="cal-lists">
<div class="btn btn-large" id="1">John's Personal Calendar</div>
<div class="btn btn-large add-cal" id="2">Company Calendar</div>
<div class="btn btn-large add-cal" id="3">Confrence Room Calendar</div>
</div>
然后我有以下jQuery应该利用FullCalendar addEventSource方法。
$("div.add-cal").click(function()
{
var json = 'http://WEBSERVER.com/calendar/json/';
var cal = $(this).attr('id');
var src = json+cal;
$('#calendar').fullCalendar( 'addEventSource', src);
$(this).removeClass('add-cal');
$(this).addClass('rem-cal');
});
$("div.rem-cal").click(function()
{
var json = 'http://WEBSERVER.com/calendar/json/';
var cal = $(this).attr('id');
var src = json+cal;
$('#calendar').fullCalendar( 'removeEventSource', src);
$(this).removeClass('rem-cal');
$(this).addClass('add-cal');
});
每当用户点击
时 <div class="btn btn-large add-cal" id="2">Company Calendar</div>
$(“div.add-cal”)。单击(应调用function(),添加资源,然后将CSS类从“add-cal”更改为“rem-cal”。
然后,如果再次单击该按钮,$(“div.rem-cal”)。单击(应调用function()。事实并非如此。
点击公司日历会不断将公司日历事件添加到显示中。
第一次单击时,类会相应地更改为“rem-cal”,但之后不会更改。因此,如果用户单击三次,则会显示三个事件实例。
我对jQuery / JavaScript不太满意,所以非常感谢任何建议。
提前致谢。
答案 0 :(得分:1)
这种情况正在发生,因为您将事件处理程序绑定到尚未与任何内容匹配的选择器。
您需要使用jQuery的.on()
方法。
e.g。
$("div.btn-group")
.on("click", "div.add-cal", function() {
...
})
.on("click", "div.rem-cal", function() {
...
});