我有一个类似的布局:

<div id="..."><img src="..."></div>

并希望使用jQuery选择器在单击时选择div中的子img。

为了得到div,我有一个选择器:

$(this)

如何使用选择器获取子img?


当前回答

在jQuery中引用子级的方法。我在下面的jQuery中总结了它:

$(this).find("img"); // any img tag child or grandchild etc...   
$(this).children("img"); //any img tag child that is direct descendant 
$(this).find("img:first") //any img tag first child or first grandchild etc...
$(this).children("img:first") //the first img tag  child that is direct descendant 
$(this).children("img:nth-child(1)") //the img is first direct descendant child
$(this).next(); //the img is first direct descendant child

其他回答

您可以找到父div的所有img元素,如下所示

$(this).find('img') or $(this).children('img')

如果你想要一个特定的img元素,你可以这样写

$(this).children('img:nth(n)')  
// where n is the child place in parent list start from 0 onwards

div只包含一个img元素。因此,以下内容是正确的

 $(this).find("img").attr("alt")
                  OR
  $(this).children("img").attr("alt")

但是如果您的div包含更多的img元素,如下所示

<div class="mydiv">
    <img src="test.png" alt="3">
    <img src="test.png" alt="4">
</div>

那么就不能使用上面的代码来查找第二个img元素的alt值。所以你可以试试这个:

 $(this).find("img:last-child").attr("alt")
                   OR
 $(this).children("img:last-child").attr("alt")

此示例展示了如何在父对象中查找实际对象的一般思想。您可以使用类来区分孩子的对象。这既简单又有趣。即

<div class="mydiv">
    <img class='first' src="test.png" alt="3">
    <img class='second' src="test.png" alt="4">
</div>

您可以按如下方式进行操作:

 $(this).find(".first").attr("alt")

具体如下:

 $(this).find("img.first").attr("alt")

您可以使用find或children作为上述代码。欲了解更多信息,请访问儿童http://api.jquery.com/children/和查找http://api.jquery.com/find/.参见示例http://jsfiddle.net/lalitjs/Nx8a6/

尝试以下代码:

$(this).children()[0]

jQuery构造函数接受第二个名为context的参数,该参数可用于重写选择的上下文。

jQuery("img", this);

这与像这样使用.find()相同:

jQuery(this).find("img");

如果所需的img只是所单击元素的直接后代,则还可以使用.children():

jQuery(this).children("img");

你可以使用

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
 $(this).find('img');
</script>

您可以使用以下任一方法:

1 find():

$(this).find('img');

2个孩子():

$(this).children('img');