关于寻找更高效的 jquery css 选择器的问题
我有一个包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样
$('#wrapper .thumbnail img:first-child')
Do it like this
$('#wrapper .thumbnail img:first-child')