我有一个与此类似的布局:
<div id="..."><img src="..."></div>
并想用一个jQuery选择器选择子img
内div
的点击。
要获得div
,我有以下选择器:
$(this)
如何img
使用选择器让孩子?
我有一个与此类似的布局:
<div id="..."><img src="..."></div>
并想用一个jQuery选择器选择子img
内div
的点击。
要获得div
,我有以下选择器:
$(this)
如何img
使用选择器让孩子?
这也应该工作:
$("#id img")
试试这个代码:
$(this).children()[0]
我不知道DIV的ID,我认为您可以像这样选择IMG:
$("#"+$(this).attr("id")+" img:first")
在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标签后面紧跟着IMG标签,则还可以使用:
$(this).next();
如果您需要将第img
一个水平降低一个水平,则可以执行
$(this).children("img:first")
jQuery构造函数接受名为的第二个参数context
,该参数可用于覆盖选择的上下文。
jQuery("img", this);
.find()
就像这样使用:
jQuery(this).find("img");
如果您想要的img 仅是clicked元素的直接后代,则还可以使用.children()
:
jQuery(this).children("img");
您的中可能有0到许多
<img>
标签<div>
。要查找元素,请使用
.find()
。为了确保代码安全,请使用
.each()
。在一起使用
.find()
和.each()
可以防止<img>
元素为0 时出现空引用错误,同时还允许处理多个<img>
元素。