复杂的 jQuery 选择器
我很难找到适合我的问题的正确 jQuery 选择器。
我所拥有的:
1)11个div,具有“theCycle”类,其中10个是隐藏的,1个是显示的 2)当前显示的div元素中有输入 3)一些输入具有“required”类
我需要什么:
需要选择“theCycle”类,然后输入“required”类,然后检查它们是否已填充。
到目前为止,我所尝试的方法失败了,或者仍然说我的输入未填充。
I have hard time figuring out the correct jQuery selector for my problem.
What I have:
1) 11 divs, that has class "theCycle", 10 of them are hidden, one displayed
2) There is inputs in the current displayed div element
3) Some inputs have class "required"
What I need:
Need to select class "theCycle", then inputs with class "required" and then check if they are filled.
So far what I have tried fails or still says that my inputs arent filled.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西应该有效:)
Something like this should work :)
尝试使用 .filter() 获取具有所需元素的选择器:
Try with .filter() to get the selector with the desired elements: