对 jquery 中某个类的每个元素运行 if 语句

发布于 2024-10-19 07:08:15 字数 301 浏览 0 评论 0原文

表单特定区域中的每个输入都有.validate类。问题是,当运行 if 语句时,尤其是这个:

$("#form").live('submit', function(){
if($(".validate").val()=="")
    return false;
else
    return true;
});

如果其中只有一个包含单个字符,它将认为它们全部填写并让表单提交。有没有办法在所有 input.validate 上运行此语句?

Each input in a certain area of a form have the .validate class. The problem is, is when an if statement is run, this one in particular:

$("#form").live('submit', function(){
if($(".validate").val()=="")
    return false;
else
    return true;
});

if only one of them has a single character in them, it will consider them all filled out and let the form submit. Is there a way to run this statement on all input.validate?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

吻泪 2024-10-26 07:08:15

使用 jquery 的 $.each 函数检查所有输入

Use jquery's $.each function to check for all inputs

心欲静而疯不止 2024-10-26 07:08:15

这会起作用。

$("#form").live('submit', function(){
  $(".validate").each(function(index,value){
    if($(this).val() == "")
      return false;
  });
});

This will work.

$("#form").live('submit', function(){
  $(".validate").each(function(index,value){
    if($(this).val() == "")
      return false;
  });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文