문제

I have a group of some number of tags like these:

<a href="attachment/72" mime="image" target="_blank" class="value attachment">Filename.jpg</a>

<a href="attachment/73" mime="archive" target="_blank" class="value attachment">Filename.zip</a>

Is it possible to select with jQuery only anchors with attribute "mime" set to "image"?

도움이 되었습니까?

해결책

Try this :

$('a[mime=image]');

다른 팁

use Attribute selector in jquery like this

$("a[mime=image]").attr("href" , "image.png");

or if you want only archive attribute means

 $("a[mime=archive]").attr("id" , "someId");
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top