欧芹的排除不承认:最后

Parsley's EXCLUDED not recognizing :last

我正在尝试让 Parsley 验证 table 中除最后一行之外的所有行,它似乎忽略了我)

$('form').parsley({
            excluded: 'tr:last'
        }).validate();

这是JSFIddle

有什么想法吗?

excluded 通过过滤您的输入来工作,即:

$yourForm.find(inputs).not(excluded)`

它不会"redo"从表单级别进行搜索,即它不会

$yourForm.find(inputs).not($yourForm.find(excluded))  # *Not* the way Parsley treats `excluded`

因此您的 excluded 选择器无效。