我浏览了与验证组相关的其他stackoverflow(以及其他)问题,但没有工作或正是我正在寻找的。 p>
我有一个用户名和密码字段,每个字段都有自己的错误消息。但是,如果两者都无效,我想要一个合并的消息。我已经尝试创建一个组,我甚至无法使其工作(将两个分组的消息组合起来,同时保留单个错误消息),更不用说组的自定义消息了。有任何想法吗?这是我的相关代码:
groups: {
combined: "loginemail loginuserpw"
},
rules: {
loginemail: {
required: true,
email: true
},
loginuserpw: {
required: function(element) {
return $('input[name="logintype"]:checked').val() == 'return';
}
}
},
messages: {
loginemail: {
required: "'.T_ERR_EMAIL.'",
email: "'.T_ERR_EMAIL_INVALID.'"
},
loginuserpw: {
required: "'.T_ERR_PASS.'"
}
},
errorPlacement: function(error, element) {
error.insertAfter('#form_container');
}