1

我正在使用 jQuery validate 在提交之前检查我的表单。在我的 HTML 中,我有类似名称、ID 的输入。我想知道如何在不一一写出的情况下验证具有相似名称的输入(类似于具有相似名称的 jQuery 选择元素)?

HTML
<form id="form1">
<table>
<tr><th>Input 1:</th><td><input type="text" name="input1" id="id_input1"/></td></tr>
<tr><th>Input 2:</th><td><input type="text" name="input2" id="id_input2"/></td></tr>
<tr><th>Input 3:</th><td><input type="text" name="input3" id="id_input3"/></td></tr>
</table>
</form>

Javascript

$("#form1").validate({
submitHandler:function(form) {
SubmittingForm()
},
rules: {                    //I am thinking if there has similar stuffs like
                            //$('th[name^="input"]')
input1: "required",     
input2:"required",
input3:"required",                      
    },
messages: {
    input1: "Please finish the table.",                 
    input2: "Please finish the table.",
        input3: "Please finish the table."  
          }
})
4

1 回答 1

1

对于验证部分,您只能将 class="required" 添加到您的文本字段,它会自动验证它。

至于消息,你可以参考这个帖子

于 2012-09-04T15:04:20.063 回答