如何在jQuery

时间:2015-10-20 20:08:25

标签: jquery javascript-events event-handling

所有

我想知道如何将多个处理函数绑定到元素上的同一事件,例如:

$("#this_element").on("click.action1", function(){
/* first thing to run when click this element */
}).on("click.action2", function(){
/* second thing to run when click this element */
}).on("click.action3", function(){
/* last thing to run when click this element */
})

由于

1 个答案:

答案 0 :(得分:0)

将它们全部合并为一个函数:

$("#this_element").on("click", function() {
    // first thing
    // second thing
    // third thing
});