我有两个字段。我希望第一个字段大于零(0),第二个字段大于一(1)。第一个字段也不应该等于或大于第二个字段。
这是我到目前为止所做的事情
$("#entryForm").validationEngine();
$('#field1').rules('add', {
min: 1,
messages: {
required: 'Some custom message for the required field'
}
});
$('#field2').rules('add', {
min: 2,
messages: {
required: 'Some custom message for the required field'
}
});
答案 0 :(得分:1)
可能你可以尝试这样的事情:
<input value="field1" class="validate[required,equals[field2]] text-input" type="text" name="field2" id="field2" />
或者你可以写一个单独的函数调用,也可以在那里进行验证。这里提到的所有这些:
http://www.position-relative.net/creation/formValidator/demos/demoValidators.html