現在、クラス.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!
}
});