使用 .children() 获取 元素
如何使用 .children()
jQuery 方法获取图像元素?是 .children('img')
吗?
How do you use the .children()
jQuery method to get an image element? Is it .children('img')
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的。例如:
如果图像是
的直接子元素,则可以通过
.$("#foo").children("img")
获取图像。 div id="foo">另一种更简洁的方法是
$("#foo > img")
——它与上面的相同。如果图像是列表的后代,但不是列表的直接子代,则可以使用
$("#foo img")
。Yes, it is. For example:
You can get the images by
$("#foo").children("img")
if the images are immediate children of the<div id="foo">
.Another, more concise way would be
$("#foo > img")
-- it's identical to the above.If the images are descendants but not immediate children of the list, you can use
$("#foo img")
.也许你应该...
http://jsfiddle.net/VvhCX/1/
Maybe you should...
http://jsfiddle.net/VvhCX/1/
.children('img')
可用于获取带有img
标签的元素的所有子元素。有关更多详细信息,请参阅文档。
.children('img')
can be used to get all children of an element with the tagimg
.See the documentation for more detail.