我正在尝试使Parsley验证表中除最后一行之外的所有行,并且似乎忽略了我)
$('form').parsley({
excluded: 'tr:last'
}).validate();
这是JSFIddle
有任何想法吗 ?
最佳答案
excluded
通过过滤输入来工作,即:
$yourForm.find(inputs).not(excluded)`
它不会从表单级别“重做”搜索,即不会:
$yourForm.find(inputs).not($yourForm.find(excluded)) # *Not* the way Parsley treats `excluded`
因此,您的
excluded
选择器无效。