如果点击特定类的对象,jQuery调用函数?

时间:2011-05-10 14:24:14

标签: jquery class

我有一个带有一些链接的无序列表。一些链接具有类“A”,其他链接具有类“B”。 我想根据点击的类来调用jQuery函数,但我不知道如何执行此操作。

5 个答案:

答案 0 :(得分:6)

$('.yourClass').click(function(e){
    //do something here
});

答案 1 :(得分:3)

为什么不简单地检查函数内的类?

$("ol li a").click(function() {
    if ($(this).hasClass("A")) {
        // Do stuff if class = "A"
    } else if ($(this).hasClass("B")) {
        // Do stuff if class = "B"
    }
});

答案 2 :(得分:0)

$(".A").click(function() {
  // do stuff for A
});

$(".B").click(function() {
  // do some other different stuff for B
});

答案 3 :(得分:0)

jQuery('.A').click(function() { handler here })
jQuery('.B').click(function() { another handler here })

答案 4 :(得分:0)

$("LI.A").click(function() {  
    //your stuff  
});