我的HTML表单有许多div,它们是向导的步骤。单击“下一步”按钮后,我想验证活动div。我正在使用jQuery.Validate.js插件。
每个div都有一个ID,所以我想要一种方式来说:
wizardForm.validate().element('#first-step :input')
但这只会验证第一个输入,而不是所有输入。 如何验证div中的所有输入?
答案 0 :(得分:28)
根据jAndy的建议,我创建了这个辅助函数:
jQuery.validator.prototype.subset = function(container) {
var ok = true;
var self = this;
$(container).find(':input').each(function() {
if (!self.element($(this))) ok = false;
});
return ok;
}
用法:
if (wizardForm.validate().subset('#first-step')) {
// go to next step
}
答案 1 :(得分:1)
我尝试了这个解决方案,它对我不起作用。所以这就是我如何使用jquery.validation插件实现相同的行为。
验证员:
var form = $('#form');
// init validator obj and set the rules
form.validate({
errorElement: 'span', //default input error message container
errorClass: 'help-inline', // default input error message class
focusInvalid: false, // do not focus the last invalid input
ignore: "",
rules: {
// the rules, as usual
},
highlight: function (element) { // hightlight error inputs
$(element).closest('.control-group').addClass('error'); // set error class to the control group
},
unhighlight: function (element) { // revert the change dony by hightlight
$(element)
.closest('.control-group').removeClass('error'); // set error class to the control group
}
});
这就是我验证每一步的方法:
$('#step :input').valid()
像魅力一样工作。
答案 2 :(得分:0)
如果您查看 options for the validate()
function ,其中一个选项是ignore
,默认情况下会阻止验证程序尝试验证与CSS伪相匹配的任何字段班:hidden
。我将此与 FuelUX Wizard 结合使用,并且能够阻止向导进入下一步,并执行以下操作:
$( '#wizard' ).wizard().on( 'change', function( event, info ) {
if ( ! $( '#wizard_form' ).valid() ) event.preventDefault();
});