jQuery选择匹配类和属性的元素?

时间:2012-08-01 22:00:19

标签: jquery

我目前正在使用类.follow-container选择所有元素,这是代码:

$('.follow-container').html('it's this one');

我如何只选择具有该类以及属性onmousedown="alert()"

的元素

3 个答案:

答案 0 :(得分:4)

$('.follow-container[number="3"]')

答案 1 :(得分:3)

提一下,但您应该使用data attribute而不是不受支持的number属性。

而不是data-number="3"呢?

然后您可以使用以下选项:

$('.follow-container[data-number="3"]');

如果您希望使用属性,可以使用:

$('.follow-container[number="3"]');

答案 2 :(得分:0)

以下是片段:

            $('.follow-container').each(function(idx, ele)
            {
                if($(ele).attr('onmousedown') == 'alert()')
                {
                    // do stuff to $(ele)
                    // $(ele) is the element you want!
                }
            });