我有一组像这样的一些标签:
<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>
是否可以仅使用jQuery选择具有属性&#34; mime&#34;的锚点。设置为&#34;图像&#34;?
答案 0 :(得分:2)
试试这个:
$('a[mime=image]');
答案 1 :(得分:0)
在jquery中使用属性选择器,如下所示
$("a[mime=image]").attr("href" , "image.png");
或者如果您只想要归档属性意味着
$("a[mime=archive]").attr("id" , "someId");