关于寻找更高效的 jquery css 选择器的问题

发布于 2024-10-27 22:24:12 字数 284 浏览 2 评论 0原文

我有一个包含 10 个缩略图 div 的包装 div,每个缩略图包含 10 个 img 标签,我想要这 10 个缩略图 div 中每个缩略图的第一个 img 标签的数组。目前我正在做

$('#wrapper').find('.thumbnail').find('img:first') //--> [<img>, <img>, ... , <img>] 10 img tags total

有没有更短的方法来做到这一点?

谢谢!

I have a wrapper div containing 10 thumbnail divs each of which contains 10 img tags, I want an array of the first img tag's of each of these 10 thumbnail divs. Currently I am doing

$('#wrapper').find('.thumbnail').find('img:first') //--> [<img>, <img>, ... , <img>] 10 img tags total

Is there a shorter way to do this?

Thanks!

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

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

发布评论

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

评论(2

南街九尾狐 2024-11-03 22:24:12
$('#wrapper .thumbnail > img:first-child')
$('#wrapper .thumbnail > img:first-child')
野生奥特曼 2024-11-03 22:24:12

像这样$('#wrapper .thumbnail img:first-child')

Do it like this $('#wrapper .thumbnail img:first-child')

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