我正在使用我的rails app中的twitter bootstrap(https://github.com/ddarren/jQuery-Live-Form-Validation-For-Twitter-Bootstrap)进行jQuery实时验证。我想从特定条件的字段中删除验证。 例如:
if(project=='Fixed'){
$("#project_price").validate({
expression: "if(VAL != '') return true; else return false;",
message: "Price is required."
});
}
else{
//Disable validation for price field
}
有人可以建议如何删除/禁用jQuery实时验证吗?
答案 0 :(得分:0)
您是否尝试过使用以下内容覆盖行为:
$("#project_price").validate({
expression: "return true;",
});
?