我正在使用jQuery验证插件开发一个带有客户端验证的表单。
这几乎完美但我遇到了问题:
表单由5个输入组成。 一个输入需要其他输入的内容(必须有效)才能进行验证,我举了一个例子:
$('#submitionData').validate(
{
rules: {
tb_valorEmprestimo:
{
required: true,
min: 1000,
max: 999999999,
checkForTranche: true
...
jQuery.validator.addMethod("checkForTranche", function()
{
return $('#tb_tranche').valid() == 1 ? true : false
}
, "Please Correct Tranche field");
其中#tb_tranche是我需要首先验证的控件,但是一个问题是错误的, 当tb_tranche有效时,文本说...请更正Tranche字段继续出现在tb_valorEmprestimo输入中..
Apreciate帮助家伙,谢谢