JQuery 验证:如何检查多个选择中的项目

发布于 2024-09-26 23:58:21 字数 1023 浏览 1 评论 0原文

我有一个使用 JQuery 验证插件的表单。

<label>
    <input name="Distribution[]" type="checkbox" id="dist_europe" class="required minlength:1" value="Europe" />  Europe 
</label>

<select name="Europe[]" size="5" multiple id="Europe">
   <option value='Albania'>Albania</option>
   <option value='Andorra'>Andorra</option>
   <option value='Austria'>Austria</option>
</select>

我需要进行“条件”验证。 例如。如果选中复选框,请确保“选择选项已选中”中至少一项。

 $(document).ready(function(){
     $("#commentForm").validate({
      rules: {
              Europe: {
                required: "#dist_europe:checked",
                minlength: 1
              }  
      },
      messages: {
        Europe: "Please select at least 1 country"
      }
     }
})

我现在面临的问题是:

  1. 我能够检测到该复选框已被选中。
  2. 但是,我无法检查“选择”数组 Europe[]
  3. 如果我删除该数组并将其命名为 Europe,我将能够检测到至少选择了一项。但是,这样做将意味着后端 PHP 脚本将无法处理数组中的多重选择。

我该如何解决这个问题?谢谢

I have a form using JQuery validation plugin.

<label>
    <input name="Distribution[]" type="checkbox" id="dist_europe" class="required minlength:1" value="Europe" />  Europe 
</label>

<select name="Europe[]" size="5" multiple id="Europe">
   <option value='Albania'>Albania</option>
   <option value='Andorra'>Andorra</option>
   <option value='Austria'>Austria</option>
</select>

I need to do 'conditional' validation.
eg. If checkbox is selected, make sure at least one item in 'select option is selected'.

 $(document).ready(function(){
     $("#commentForm").validate({
      rules: {
              Europe: {
                required: "#dist_europe:checked",
                minlength: 1
              }  
      },
      messages: {
        Europe: "Please select at least 1 country"
      }
     }
})

The issue I am facing now is :

  1. I am able to detect that the checkbox is selected.
  2. However, I am not able to check the 'select' array, Europe[]
  3. If I remove the array, and name it Europe, I will be able to detect that at least one item is selected. But, doing that will mean the backend PHP script will not be able to process the multiple select in the array.

How do I work around this? Thanks

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

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

发布评论

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

评论(1

眉黛浅 2024-10-03 23:58:21

使用 name="Europe[]" 之类的名称时,您需要使用字符串作为标识符(标识符是名称,而不是元素的 id)在 rulesmessages 中,如下所示:

$(document).ready(function(){
     $("#commentForm").validate({
      rules: {
        'Europe[]': {
                required: "#dist_europe:checked",
                minlength: 1
              }  
      },
      messages: {
        'Europe[]': "Please select at least 1 country"
      },
     debug: true
    });
});

您可以在此处进行测试

When using a name like name="Europe[]", you'll need to use a string for your identifier (the identifier is the name, not the id of the element) in rules and messages, like this:

$(document).ready(function(){
     $("#commentForm").validate({
      rules: {
        'Europe[]': {
                required: "#dist_europe:checked",
                minlength: 1
              }  
      },
      messages: {
        'Europe[]': "Please select at least 1 country"
      },
     debug: true
    });
});

You can test it out here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文