如何使用 jQuery 选择没有可见兄弟元素的元素?
我知道我可以用一些额外的 javascript 来做到这一点,但我猜有一种方法可以只使用 jQuery 选择器。
我正在寻找的元素将具有刚刚(在上一个 JS 行上)将其显示属性设置为 none 的同级元素。如果元素有一个可见的兄弟元素,我不想要匹配。
非常感谢。
I know I could do this with some extra javascript, but I'm guessing there is a way to it using just a jQuery selector.
The element(s) I'm looking for will have siblings that have just (on the previous JS line) had their display property set to none. if the element(s) have even one visible sibling, I don't want a match.
Thanks a ton.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能有一种更简洁的方法,但这应该可行:
您可以在这里看到小提琴:http://jsfiddle。网/JmwcR/23/
There might be a more concise way, but this should work:
You can see the fiddle here: http://jsfiddle.net/JmwcR/23/