当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何获得$(this)选择器的子节点?》经验,为你挑选了15个好方法。

我的布局类似于:

并希望使用jQuery选择器来选择点击img内的子项div.

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

$(this)

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



1> Simon..:

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

jQuery("img", this);

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

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

如果你想要的imgs 只是被点击元素的直接后代,你也可以使用.children():

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


为了它的价值:jQuery("img",this)在内部转换为:jQuery(this).find("img")所以第二个是如此快一点.:)
谢谢@Paul,我担心使用find()是*错*,结果证明这是唯一的方法;)
@adamyonk事实上没有,至少如果这是什么可以通过:http://jsperf.com/jquery-children-vs-find/3
如果节点是直接子节点,那么只做$(this).children('img'); ?
我看到与@PaulIrish在这个例子中所说的完全相反 - http://jsperf.com/jquery-selectors-comparison-a.任何人都能解释一下吗?要么我的测试用例错了,要么jquery在过去的4年中改变了这种优化.
根据这个(2014年9月29日),`children()`比`find()`快:http://jsperf.com/jquery-children-vs-find/92

2> philnash..:

你也可以用

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

这将返回img作为后代的所有sdiv



3> rakslice..:

如果你需要得到第一个img只是一个级别,你可以做到

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


`:first`是否只匹配"*正好只有一个级别*",或者它是否与找到的[*"first"*`img`](http://api.jquery.com/first-selector/)匹配?
@IanBoyd,`.children()`是"完全一级"的来源,而`:first`是"第一级"的来源.
@IanBoyd,该元素将被解释为.它只适用于`.find()`而不是`.children()`
如果你正在使用:首先使用.find()小心,jQuery似乎找到所有的后代然后返回第一个元素,有时非常昂贵

4> 小智..:

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

$(this).next();


.next()非常脆弱,除非你总能保证元素将成为下一个元素,否则最好使用不同的方法.在这种情况下,IMG是div的后代,而不是兄弟.

5> Rayron Victo..:

直接孩子

$('> .child', this)


这个答案可能会产生误导,因为没有带有'child'类的元素,所以它不起作用.

6> Lalit Kumar ..:

您可以在下面找到父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元素,如下所示

3 4

然后你不能使用上层代码来找到第二个img元素的alt值.所以你可以尝试这个:

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

此示例显示了如何在父对象中查找实际对象的一般概念.您可以使用类来区分子对象.这很简单有趣.即

3 4

你可以这样做:

 $(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/



7> Oskar..:

在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



8> Maxam..:

试试这段代码:

$(this).children()[0]


甚至更容易`$(这个:第一个孩子)`
@rémy:这甚至都不是有效的语法.(花了两年的时间让任何人注意到......)
虽然它返回一个dom元素而不是jq对象,但它会工作
而不是`$($(this).children()[x])`使用`$(this).eq(x)`或者如果你想要第一个,只需要`$(this).first()`.
我不知道它是否是当前情况的最佳方法,但如果你想走这条路并仍然以jQuery对象结束,那就用它包装:`$($(this).children() [0])`.

9> 小智..:

在不知道DIV的ID的情况下,我认为你可以选择这样的IMG:

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


这可能实际上有效,但它有点Rube Goldberg答案:)
@LocalPCGuy你的意思是:_"如果你打算使用那个代码**请求帮助**"_
如果您打算使用该代码,至少应该:$("#"+ this.id +"img:first")

10> 小智..:

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

1找():

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

2个孩子():

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



11> Thirumalai m..:

jQuery each是一个选项:

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



12> Dennis R..:

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

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

以下是如果您没有参考,$(this)并且您希望imgdiv其他功能中提供参考.

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



13> tetutato..:

这应该工作:

$("#id img")


操作想使用`this`

14> RPichioli..:

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

单击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 
    console.log('Method #3: '+$(this).find('img:eq(0)'));
  });
});
.the_div{
  background-color: yellow;
  width: 100%;
  height: 200px;
}




15> Jason Willia..:

您的中可能包含0到许多标签

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

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

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

// 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;
  
}


推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有