如何在jquery中跳过与其他标签具有相同类名的标签
如何跳过 jquery 中与其他标签具有相同类名的一个标签,两者都会显示,因此请帮助如何使用 jquery 跳过一个标签
<label for="myCb1">test1</label>
<label for="myCb1">test</label>
<input type="checkbox" id="myCb1" value="1" />
当我尝试调用 myCb1 的标签时,
How to skip one label having same class name of other in jquery
<label for="myCb1">test1</label>
<label for="myCb1">test</label>
<input type="checkbox" id="myCb1" value="1" />
when i try to invoke the label of myCb1 both are display so please help how to skip one label using jquery
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您想使用
:eq
伪选择器作为这样::eq
允许您指定要返回的已找到元素的索引。 索引是从零开始(这意味着第一个元素将是索引0
)。You want to use the
:eq
pseudo-selector as such::eq
allows you to specify the index of the found elements that you want to return. The index is zero-based (which means that the first element will be index0
).$('.class:first-child')
这是如果它们像您刚才描述的那样彼此相邻。
$('.class:first-child')
This is if they are right next to each other like you just described.
要么给它们一个 id 来唯一标识它们,要么您可以使用选择器,例如:
Either give them an id to uniquely identify them, or you can use a selector such as: