我有一个由 jquery validate 检查的表单。导致某些问题的字段如下所示:
<label>Select an Account Type<</label><br>
<input type="radio" name="accountType" value="1" id="accountType_C"><label id="accountType_C" for="accountType_C">Coder</label>
<input type="radio" name="accountType" value="0" id="accountType_S"><label id="accountType_S" for="accountType_S">Surreptitious Ninja</label>
表单中的所有其他字段都经过适当验证,但上述字段除外。不太确定我做错了什么。大约有 12 个其他字段可以毫无问题地得到验证。我已经仔细检查了重复声明的验证,但没有。
这是验证功能:
$("#regForm").validate({
rules: {
accountType: "required"
},
messages: {
accountType: "You must select an account type"
}
});
非常感谢!