如何获得$(this)选择器的子级?


2229

我的布局与此类似:

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

并想用一个jQuery选择器选择子imgdiv的点击。

要获得div,我有以下选择器:

$(this)

如何img使用选择器让孩子呢?

Answers:


2854

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

jQuery("img", this);

.find()就像这样使用:

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

如果您想要的img 是clicked元素的直接后代,则还可以使用.children()

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

575
对于它的价值:jQuery(“ img”,this)在内部被转换为:jQuery(this).find(“ img”)所以第二个要快得多。:)
Paul Irish

24
谢谢@Paul,我担心使用find()是错误的,事实证明这是唯一的方法;)
Agos 2010年

5
如果该节点是直接子节点,那么仅仅执行$(this).children('img');会不是最快的。?
adamyonk 2011年

11
@adamyonk实际上没有,如果要这样做,至少也没有:jsperf.com/jquery-children-vs-find/3
Simon Stender Boisen

3
我看到与@PaulIrish在此示例中所说的完全相反-jsperf.com/jquery-selectors-comparison-a 。谁能阐明一些想法?要么我弄错了测试用例,要么jquery在过去4年中更改了此优化。
乔纳森·瓦纳斯科

471

您也可以使用

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

这将返回所有imgs的后代div


在一般情况下,似乎$(this).children('img')会更好。例如,<div><img src="..." /><div><img src="..." /></div></div>因为大概用户希望找到1级img。
Buttle Butkus 2014年

137

如果您需要将第img一个水平降低一个水平,则可以执行

$(this).children("img:first")

6
难道:first只匹配“ 准确地记录了一个水平 ”,或者它匹配“第一次” img被发现?
伊恩·博伊德

3
@IanBoyd,.children()是“下一个精确级别”的来源,:first也是“第一” 级别的来源。
泰勒·克伦普顿

3
@IanBoyd,该元素将无法说明。仅当您使用.find()而不是.children()
泰勒·克朗普顿

2
如果您使用:first和.find()时要小心,jQuery似乎会找到所有后代,然后返回第一个元素,有时非常昂贵
Clarence Liu

1
@ButtleButkus在问题中,this已经是对<div>包含的引用<img>,但是,如果您要从引用中遍历多个级别的标记,则您肯定可以children()
编写

76

如果您的DIV标签后面紧跟着IMG标签,则还可以使用:

$(this).next();

16
.next()确实很脆弱,除非您始终可以保证该元素将是下一个元素,否则最好使用其他方法。在这种情况下,IMG是div的后代,而不是同级。
LocalPCGuy 2011年

OP明确要求在div中添加子img。
乔治·坦佩斯塔


41

您可以找到父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")

您可以使用以上代码查找或子代。有关更多信息,请访问儿童http://api.jquery.com/children/并找到http://api.jquery.com/find/。参见示例http://jsfiddle.net/lalitjs/Nx8a6/


35

在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

我会使用nth-child()
McGuinness

31

我不知道DIV的ID,我认为您可以这样选择IMG:

$("#"+$(this).attr("id")+" img:first")

54
这可能实际上有效,但是有点像Rube Goldberg的答案:)
Scott Evernden 09年

8
如果要使用该代码,至少要这样做:$(“#” + this.id +“ img:first”)
LocalPCGuy 2011年

10
@LocalPCGuy您的意思是:“并且,如果您打算使用该代码调用来寻求帮助 ”,
gdoron支持Monica

如果“ this”已经选择了实际的div,您为什么要这样做?此外,如果div没有ID,则此代码将无效。
乔治·坦佩斯塔

31

试试这个代码:

$(this).children()[0]

13
那将起作用,尽管它返回的是dom元素而不是jq对象
redsquare

2
我不知道这是否是解决当前情况的最佳方法,但是如果您想走这条路线而仍然以jQuery对象结尾,则只需将其包装即可:$($(this).children()[0])
patridge 2010年

19
甚至更轻松$(this:first-child)
2011年

4
而不是$($(this).children()[x])使用,$(this).eq(x)或者如果您想要第一个,只需$(this).first()
Cristi Mihai

16
@rémy:这甚至不是有效的语法。(花了
整整

23

您可以使用以下两种方法之一:

1 find():

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

2个孩子:

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

21

jQuery each是一种选择:

<div id="test">
    <img src="testing.png"/>
    <img src="testing1.png"/>
</div>

$('#test img').each(function(){
    console.log($(this).attr('src'));
});

15

您可以使用Child Selecor引用父级中可用的子级元素。

$(' > img', this).attr("src");

和下面的是,如果你不具备参考$(this)和要引用img内的可div从其他功能。

 $('#divid > img').attr("src");


8

这是一个功能代码,您可以运行它(这是一个简单的演示)。

当您单击DIV时,可以通过一些不同的方法获得图像,在这种情况下,“ this”就是DIV。

$(document).ready(function() {
  // When you click the DIV, you take it with "this"
  $('#my_div').click(function() {
    console.info('Initializing the tests..');
    console.log('Method #1: '+$(this).children('img'));
    console.log('Method #2: '+$(this).find('img'));
    // Here, i'm selecting the first ocorrence of <IMG>
    console.log('Method #3: '+$(this).find('img:eq(0)'));
  });
});
.the_div{
  background-color: yellow;
  width: 100%;
  height: 200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div id="my_div" class="the_div">
  <img src="...">
</div>

希望能帮助到你!


5

您的中可能包含0到许多<img>标签<div>

要查找元素,请使用 .find()

为了确保代码安全,请使用.each()

在一起使用.find().each()可以防止<img>元素为0 时出现空引用错误,同时还允许处理多个<img>元素。

// Set the click handler on your div
$("body").off("click", "#mydiv").on("click", "#mydiv", function() {

  // Find the image using.find() and .each()
  $(this).find("img").each(function() {
  
        var img = this;  // "this" is, now, scoped to the image element
        
        // Do something with the image
        $(this).animate({
          width: ($(this).width() > 100 ? 100 : $(this).width() + 100) + "px"
        }, 500);
        
  });
  
});
#mydiv {
  text-align: center;
  vertical-align: middle;
  background-color: #000000;
  cursor: pointer;
  padding: 50px;
  
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<div id="mydiv">
  <img src="" width="100" height="100"/>
</div>


你为什么这么做? $("body").off("click", "#mydiv").on("click", "#mydiv", function() {
克里斯22年

我不知道@Alex使用摘要的方式或位置。因此,我使它尽可能安全和通用。将事件附加到正文将使事件得以触发,即使在创建事件时div不在dom中,事件也将触发。在创建新事件之前清除事件可防止处理程序在触发事件时多次运行。没必要按照我的方式做。只需将事件附加到div上也可以。
杰森·威廉姆斯

谢谢。我以前在脚本中已经看到过这一点,尽管它可以满足程序员的预期,但是当我尝试将其用于模式窗口时,该事件仍然可以单击创建多个模式。我想我用错了,但是我结束了使用event.stopImmediatePropagation()元素来防止这种情况的发生。
克里斯22年

4

$(document).ready(function() {
  // When you click the DIV, you take it with "this"
  $('#my_div').click(function() {
    console.info('Initializing the tests..');
    console.log('Method #1: '+$(this).children('img'));
    console.log('Method #2: '+$(this).find('img'));
    // Here, i'm selecting the first ocorrence of <IMG>
    console.log('Method #3: '+$(this).find('img:eq(0)'));
  });
});
.the_div{
  background-color: yellow;
  width: 100%;
  height: 200px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div id="my_div" class="the_div">
  <img src="...">
</div>



0

如果您的img恰好是div中的第一个元素,请尝试

$(this.firstChild);

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.