Answers:
jQuery构造函数接受名为的第二个参数context
,该参数可用于覆盖选择的上下文。
jQuery("img", this);
.find()
就像这样使用:
jQuery(this).find("img");
如果您想要的img 仅是clicked元素的直接后代,则还可以使用.children()
:
jQuery(this).children("img");
您也可以使用
$(this).find('img');
这将返回所有img
s的后代div
$(this).children('img')
会更好。例如,<div><img src="..." /><div><img src="..." /></div></div>
因为大概用户希望找到1级img。
如果您需要将第img
一个水平降低一个水平,则可以执行
$(this).children("img:first")
:first
只匹配“ 准确地记录了一个水平 ”,或者它匹配的“第一次” img
被发现?
.children()
是“下一个精确级别”的来源,:first
也是“第一” 级别的来源。
.find()
而不是.children()
this
已经是对<div>
包含的引用<img>
,但是,如果您要从引用中遍历多个级别的标记,则您肯定可以children()
如果您的DIV标签后面紧跟着IMG标签,则还可以使用:
$(this).next();
您可以找到父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/
在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的ID,我认为您可以这样选择IMG:
$("#"+$(this).attr("id")+" img:first")
试试这个代码:
$(this).children()[0]
$($(this).children()[0])
。
$(this:first-child)
$($(this).children()[x])
使用,$(this).eq(x)
或者如果您想要第一个,只需$(this).first()
。
您可以使用Child Selecor引用父级中可用的子级元素。
$(' > img', this).attr("src");
和下面的是,如果你不具备参考$(this)
和要引用img
内的可div
从其他功能。
$('#divid > img').attr("src");
这是一个功能代码,您可以运行它(这是一个简单的演示)。
当您单击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>
希望能帮助到你!
您的中可能包含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() {
event.stopImmediatePropagation()
元素来防止这种情况的发生。
$(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>
你可以用
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
$(this).find('img');
</script>