我删除了很多代码,以便您更容易看到,但实质上我有类似以下的内容
$("#my-form").validate({
focusInvalid: false,
errorContainer: "#validation",
errorLabelContainer: "#validation",
errorElement: "li",
onfocusout: false,
onkeyup: false,
groups: {
fileGroup: "fileOne fileTwo"
},
rules: {
fullName: {
required: true,
maxlength: 50
},
emailAdd: {
emailRule: true,
maxlength: 80,
required: true
},
fileOne: {
accept: "image/bmp, image/jpeg, image/pjpeg, image/png, image/tiff, application/pdf",
filesize: 2097152,
require_from_group: [1, '.fileGroup']
}
},
...
目前,我的错误在我的容器中显示为列表项,正如我希望的那样。但是,当我需要它显示在底部时,fileOne消息似乎总是显示在列表的顶部。
我尝试添加errorPlacement,但这似乎与我目前的错误命令一起使用。有没有其他方法可以确保文件消息最后显示在列表中,而不是先显示?
由于