如何处理自定义标记?

时间:2011-05-19 18:00:38

标签: jquery tags

我知道我可以解决ID或类,例如:

<img id="htmlTag">

$("#htmlTag").function();

<img class="htmlTag">

$(".htmlTag").function();

...但我该如何解决这个问题:

<img caption="htmlTag">

感谢。

2 个答案:

答案 0 :(得分:5)

你可以利用jQuery的Attribute Equals Selector,就像这样:

$("img[caption='htmlTag']");

答案 1 :(得分:3)

你想要这个:

$('img[caption="htmlTag"]')