jquery 选择器
我正在制作一个 jquery 插件。
给你一个包含多个 div 的对象。
有没有办法选择第三个子分区?
I am making a jquery plugin.
You are given an object which contains several divs.
is there anyway to select the say, 3rd child div?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
请参阅 .eq - 请记住它是基于 0 的,
例如包含元素列表的对象中的第三个 div
See .eq - remember it is 0 based
e.g for the third div in an object containing a list of elements
.get() 一个从零开始的整数,指示要检索的元素。
.get() A zero-based integer indicating which element to retrieve.
选择第三个div:
Select the third div:
你可以给他们一个类名并使用每个或简单地选择div,然后计算你的选择
you can give them a className and use each or simple select the div, and count your selections