我目前正在选择类 .follow-container 的所有元素,这是代码:
$('.follow-container').html('it's this one');
我如何只选择具有类和属性的元素onmousedown="alert()"
我目前正在选择类 .follow-container 的所有元素,这是代码:
$('.follow-container').html('it's this one');
我如何只选择具有类和属性的元素onmousedown="alert()"
$('.follow-container[number="3"]')
只是提一下,但您应该真正使用数据属性而不是不受支持的number
属性。
相反呢data-number="3"
?
然后,您可以使用以下方法选择它:
$('.follow-container[data-number="3"]');
如果您希望使用您的属性,您可以使用:
$('.follow-container[number="3"]');
这是片段:
$('.follow-container').each(function(idx, ele)
{
if($(ele).attr('onmousedown') == 'alert()')
{
// do stuff to $(ele)
// $(ele) is the element you want!
}
});