我必须像以下场景一样进行验证。
如果下拉的值为“yes”,则检查文本框值是否>= 100并返回true,否则返回false
Rules:{
valid:{
required: function() {
return $('#req').val() == 1; //this checks if the drop down value is yes
//here after this value becomes true, i want to check if the value in "valid" field is >=100 and based on that i want to return true.
}
}
},
Messages:{
required : "Enter years",
IsNumeric: "Enter numbers only"
}
文本框 (id = valid) 取决于 dropdown(req) 字段。如果req 为yes,则检查有效字段是否只有数字,并检查有效字段中的值是否>=100。如果不是数字仅验证它(这已经完成)。如果数字 >=100,则显示一条消息。有人可以帮忙验证输入的数字是否 >=100