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