使用mouseup事件触发表行中的按钮单击事件

时间:2014-07-28 14:05:06

标签: javascript jquery fullcalendar

我正在使用jQuery fullCalendar插件。

我在日历的select属性后面有一个事件:

 $("#calendar").fullCalendar({
       select: function(start,end,jsEvent,view){
                  doSomething();
               }
 });

select属性背后的事件是日历的整个日期单元格的mouseup事件。

我正在尝试在日历的日期单元格中放置一个按钮,但是无法触发该按钮的单击事件。

我已经阅读了关于冒泡的stackoverflow中的各种提交,但这些解决方案都没有奏效:

  $("#testbutton").click(function(e){
        e.stopPropagation();
        doSomethingElse();
  });

即使我从fullcalendar和所有相关代码中删除了select属性(导致日期单元格突出显示但没有要触发的事件),按钮的单击事件仍然不会触发。

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

因为动态添加了按钮,所以当前的jQuery注册不会绑定。如果您使用" on"事件绑定,它将与动态元素一起使用。尝试以下内容:

//Replace ".dynamic-button-class" with a target that points to your button.
$(document).on("click", ".dynamic-button-class", function(e) {
    e.preventDefault();
    doSomething();
});

" on"语法绑定到与模式匹配的所有未来DOM元素以及渲染时出现的元素。

见这里:http://api.jquery.com/on/

在这里:Event binding on dynamically created elements?

您还希望避免重复的事件注册。通过在另一个事件中绑定事件,您将在每次触发父事件时重新绑定事件,这可能不是您想要的。

相反,请考虑这样的解决方案:

//This method is registered once for all buttons with a "dynamic-button" class attribute and is triggered for each one clicked.
$(document).on("click", ".dynamic-button", function(e) {
    //Load the values stored in the hidden fields.
    var formStartDate = $(e.currentTarget).closest("input[name='StartDate']").val();
    //etc...
    $(document).trigger("calendar-button-clicked", {StartDate: formStartDate}); // Pass the form arguments as a JavaScript object to the calendar-button-clicked event hander
});

$(document).bind("calendar-button-clicked", function(e, data) {
    //Do something with the values in data.
});

//Single event triggered when a calendar selection is made
$(document).bind("add-button", function(e, data) {
    //Code that adds your button to the page here but also checks to see if the button has already been added.
    //persist the values from Data into some kind of form hidden form fields.
    console.log(data.StartDate);
});

$("#calendar").fullCalendar({
    select: function(start, end, jsEvent, view){
        $(document).trigger("add-button", {StartDate: start, EndDate: end, SourceEvent: jsEvent, View: view});
    }
});

编辑:这是我设置的一个快速小提琴,可以运作并演示这个概念。

http://jsfiddle.net/xDaevax/5282Q/

答案 1 :(得分:0)

 $("#testbutton").click(function(e){
    e.preventDefault();
    doSomethingElse();
});