2

我有一个自定义验证函数来使用 jQuery-Validation-Engine 验证两个密码字段是否匹配:

<input type="password" class="validate[required,funcCall[checkPassordMatch],maxSize[25]]"...

但是,如果未填充该字段,并且提交了表单,我会收到以下异常:

Uncaught TypeError: Cannot read property 'checkPassordMatch' of undefined 

有什么方法我只能在输入已填充或“必需”首先通过时才运行此验证?

作为参考,我的功能如下:

    // Validate the passwords match
function checkPassordMatch(field, rules, i, options){
    console.log(field + ' : ' + rules + ' : ' + i  + ' : ' + options )

    if (field.val() != jQuery("#inputPassword").val()) {
        return options.allrules.passwordMatch.alertText;
    }
}

欣赏任何想法。

4

1 回答 1

0

不需要此自定义功能。我可以用:

validate[required,equals[password]]
于 2012-11-08T16:32:59.757 回答