如何在类validate-hidden
var theForms = $("form[method=post]:not(.noValidate)");
if (theForms.length){
theForms.each(function(){
var $dis = $(this);
validater = $dis.validate();
if($dis.hasClass("validate-hidden")){
$dis.validate({ ignore: '' });
}
});
}
我已经厌倦了这个,但它没有忽略选项。
答案 0 :(得分:0)
我能够解决此问题,但使用setDefaults方法和顺序。
var theForms = $("form[method=post]:not(.noValidate)");
if (theForms.length){
theForms.each(function(){
var $dis = $(this);
if($dis.hasClass("validate-hidden")){
jQuery.validator.setDefaults({
ignore: ''
});
}
validater = $dis.validate();
});
}