在 jQuery 中像这样链接选择器的方法吗?输入:选中:不(:隐藏)
我想获取所有已检查且未隐藏的输入
这不起作用:
.formyform input:checked:not(:hidden)
有没有一种简单的方法可以做到这一点?
我在 jQuery 网站上找不到任何示例
I want to get all inputs that are checked and not hidden
This doesn't work:
.formyform input:checked:not(:hidden)
Is there a simple way to do it?
I couldn't find any example on the jQuery site
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你所拥有的应该可以工作,尽管你可以使用
:visible
:您可以在此处进行测试。
What you have should work, though you can simplify it with
:visible
:You can test it out here.