jquery通过src属性查找元素

时间:2014-04-23 16:19:12

标签: javascript jquery jquery-selectors

我有这个小画廊(代码只是示例):

<div id="gallery_imgs">
    <img src="http://fc01.deviantart.net/fs71/f/2014/112/0/9/nobody_believes_in_me_by_idjpanda-d7fkd7m.png" />
    <img src="http://fc09.deviantart.net/fs71/f/2014/112/5/6/feed_me_d__by_idjpanda-d7fgids.png" />
    <img src="http://fc02.deviantart.net/fs71/f/2014/104/e/5/blar_auction_by_idjpanda-d7ehmoc.png" />
</div>
<p></p>

JS代码:

var that = $("#gallery_imgs img:eq(1)");
$("p").html($("#gallery_imgs img").find("[src='"+that.attr("src")+"']").length);

此返回0.任何想法为什么?这是一个错误,或者我做错了什么?

2 个答案:

答案 0 :(得分:5)

您需要.filter()

$("p").html($("#gallery_imgs img").filter("[src='"+that.attr("src")+"']").length);

你可以这样使用.find()

$("p").html($("#gallery_imgs").find("img [src='"+that.attr("src")+"']").length);

<强>问题

$("#gallery_imgs img").find("[src='"+that.attr("src")+"']")您试图找到src元素中img元素内的元素,而不是img元素中的元素

答案 1 :(得分:1)

尝试

$("p").html($("#gallery_imgs img[src="+that.attr("src")+"]").length);