复杂的 jQuery 选择器

发布于 2024-12-04 04:52:46 字数 241 浏览 0 评论 0原文

我很难找到适合我的问题的正确 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

若能看破又如何 2024-12-11 04:52:46
  $(".theCycle:visible input.required").each(function(){
    if ($(this).val() != ""){
       //it's not empty
    } 
  });
  $(".theCycle:visible input.required").each(function(){
    if ($(this).val() != ""){
       //it's not empty
    } 
  });
美煞众生 2024-12-11 04:52:46
$('.theCycle:visible input.required').each(function() {
  if ($(this).val() != '') {
    ...
  }
})

像这样的东西应该有效:)

$('.theCycle:visible input.required').each(function() {
  if ($(this).val() != '') {
    ...
  }
})

Something like this should work :)

所谓喜欢 2024-12-11 04:52:46

尝试使用 .filter() 获取具有所需元素的选择器:

var inputs = $("div.theCycle:visible input.required").filter(function(){
     return $(this).val() != ""
});

Try with .filter() to get the selector with the desired elements:

var inputs = $("div.theCycle:visible input.required").filter(function(){
     return $(this).val() != ""
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文