Я использую этот плагин проверки jquery .Я хотел бы установить свойство minLength 5 для поля, только когда флажок установлен.Я понимаю «зависит», но как мне использовать его вместе со значением 5.
"txt-alt-zip": {
required: { // the zip is required if the alternate billing address is checked
depends: function (element) {
return $("#chk-alt-billing-address").attr("checked");
}
},
minlength: { // the zip is required if the alternate billing address is checked
depends: function (element) {
return $("#chk-alt-billing-address").attr("checked");
}
}
}