我有一个类似的布局:

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

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

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

$(this)

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


尝试以下代码:

$(this).children()[0]

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

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

您也可以使用

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

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


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

jQuery("img", this);

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

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

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

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

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

$(this).next();

如果你需要得到第一个正好向下一级的img,你可以这样做

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

直接子女是

$('> .child-class', this)

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


jQuery的每个都是一个选项:

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

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

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

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

下面是如果您没有对$(this)的引用,并且希望从其他函数引用div中可用的img。

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

在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

此外,这也应该起作用:

$("#id img")

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

1 find():

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

2个孩子():

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

这里有一个函数代码,您可以运行它(这是一个简单的演示)。

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

$(文档).ready(函数){//当你点击DIV时,你用“this”$('#my_div').click(function(){console.info('初始化测试..');console.log('方法#1:'+$(this).childres('img'));console.log('Method#2:'+$(this).find('img'));//这里,我选择了<IMG>的第一个出现console.log('Method#3:'+$(this).find('img:eq(0)'));});});.目录{背景色:黄色;宽度:100%;高度: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>

希望它有帮助!


$(文档).ready(函数){//当你点击DIV时,你用“this”$('#my_div').click(function(){console.info('初始化测试..');console.log('方法#1:'+$(this).childres('img'));console.log('Method#2:'+$(this).find('img'));//这里,我选择了<IMG>的第一个出现console.log('Method#3:'+$(this).find('img:eq(0)'));});});.目录{背景色:黄色;宽度:100%;高度: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>


<div>中可能有0到多个<img>标记。

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

要确保代码安全,请使用.each()。

在0<img>元素的情况下,同时使用.find()和.each()可以防止空引用错误,同时还可以处理多个<img>的元素。

//在div上设置单击处理程序$(“body”).off(“click”,“#mydiv”).on(“cli”,“#mydiv”,function(){//使用.Find()和.each()查找图像$(this).find(“img”).each(function(){var img=此;//“this”现在作用于image元素//对图像执行某些操作$(this).animate({width:($(this).width()>100?100:$(this).width()+100)+“像素”}, 500);});});#mydiv公司{文本对齐:居中;垂直对齐:中间;背景色:#000000;光标:指针;填充: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>


你可以使用

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

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

$(this.firstChild);

$(“#box”).click(函数){让img=$(this.firstChild);console.log({img});})<script src=“https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js“></script><div id=“box”><img src=“https://picsum.photos/seed/picsum/300/150“></div>


使用本机javascript,您可以使用

如果您有多个图像标记,请使用

this.querySelectorAll(“img”)

如果只有一个图像标签,那么我们

this.querySelector(“img”)