使用 .children() 获取 元素

发布于 2024-10-26 16:26:52 字数 87 浏览 4 评论 0原文

如何使用 .children() jQuery 方法获取图像元素?是 .children('img') 吗?

How do you use the .children() jQuery method to get an image element? Is it .children('img')?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

把时间冻结 2024-11-02 16:26:52

是的。例如:

<div id="foo">
    <img id="image1" src="blah.jpg" />
    <img id="image2" src="blah.jpg" />
    <img id="image2" src="blah.jpg" />
</div>

如果图像是 的直接子元素,则可以通过 $("#foo").children("img") 获取图像。 div id="foo">.

另一种更简洁的方法是 $("#foo > img") ——它与上面的相同。

如果图像是列表的后代,但不是列表的直接子代,则可以使用$("#foo img")

Yes, it is. For example:

<div id="foo">
    <img id="image1" src="blah.jpg" />
    <img id="image2" src="blah.jpg" />
    <img id="image2" src="blah.jpg" />
</div>

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").

寒尘 2024-11-02 16:26:52

.children('img') 可用于获取带有 img 标签的元素的所有子元素。
有关更多详细信息,请参阅文档

.children('img') can be used to get all children of an element with the tag img.
See the documentation for more detail.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文