我的布局类似于:
<div id="..."><img src="..."></div>
并希望使用jQuery选择器在点击时选择img
内的子div
。
要获得div
,我有这个选择器:
$(this)
如何使用选择器让孩子img
?
答案 0 :(得分:2776)
jQuery构造函数接受名为context
的第二个参数,该参数可用于覆盖选择的上下文。
jQuery("img", this);
这与使用.find()
相同:
jQuery(this).find("img");
如果你想要的imgs只是 直接后跟被点击的元素,你也可以使用.children()
:
jQuery(this).children("img");
答案 1 :(得分:456)
您也可以使用
$(this).find('img');
将返回img
div
答案 2 :(得分:132)
如果你需要得到的第一个img
只有一个等级,你就可以做到
$(this).children("img:first")
答案 3 :(得分:73)
如果您的DIV标签后面紧跟IMG标签,您还可以使用:
$(this).next();
答案 4 :(得分:60)
直接孩子
$('> .child', this)
答案 5 :(得分:39)
您可以找到所有父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/
答案 6 :(得分:33)
如何在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
答案 7 :(得分:30)
在不知道DIV ID的情况下,我认为您可以选择这样的IMG:
$("#"+$(this).attr("id")+" img:first")
答案 8 :(得分:30)
试试这段代码:
$(this).children()[0]
答案 9 :(得分:22)
您可以使用以下任一方法:
1 find():
$(this).find('img');
2个孩子():
$(this).children('img');
答案 10 :(得分:20)
jQuery的each
是一个选项:
<div id="test">
<img src="testing.png"/>
<img src="testing1.png"/>
</div>
$('#test img').each(function(){
console.log($(this).attr('src'));
});
答案 11 :(得分:14)
您可以使用Child Selecor来引用父级中可用的子元素。
$(' > img', this).attr("src");
以下是如果您没有引用$(this)
,并且想要引用img
中其他功能提供的div
。
$('#divid > img').attr("src");
答案 12 :(得分:11)
这也应该有效:
$("#id img")
答案 13 :(得分:6)
这是一个功能代码,你可以运行它(它是一个简单的演示)。
当你点击DIV时,你可以从一些不同的方法中获得图像,在这种情况下&#34;这个&#34;是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)'));
});
});
&#13;
.the_div{
background-color: yellow;
width: 100%;
height: 200px;
}
&#13;
<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>
&#13;
希望它有所帮助!
答案 14 :(得分:5)
<img>
内可能有0到多个<div>
个标签。
要查找元素,请使用.find()
。
为确保您的代码安全,请使用.each()
。
同时使用.find()
和.each()
可防止0 <img>
元素出现空引用错误,同时还允许处理多个<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);
});
});
&#13;
#mydiv {
text-align: center;
vertical-align: middle;
background-color: #000000;
cursor: pointer;
padding: 50px;
}
&#13;
<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>
&#13;
答案 15 :(得分:3)
$(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)'));
});
});
&#13;
.the_div{
background-color: yellow;
width: 100%;
height: 200px;
}
&#13;
<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>
&#13;
答案 16 :(得分:0)
您可以使用
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
$(this).find('img');
</script>
答案 17 :(得分:0)
如果您的img恰好是div中的第一个元素,请尝试
$(this.firstChild);
$( "#box" ).click( function() {
let 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>
答案 18 :(得分:0)
您可以使用原生 javascript
如果您有多个图片标签,请使用
this.querySelectorAll("img")
如果只有一个图片标签,那么我们
this.querySelector("img")