JQuery验证 - 在列表中定位特定的错误消息

时间:2015-12-28 19:18:12

标签: jquery jquery-validate

我删除了很多代码,以便您更容易看到,但实质上我有类似以下的内容

$("#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,但这似乎与我目前的错误命令一起使用。有没有其他方法可以确保文件消息最后显示在列表中,而不是先显示?

由于

0 个答案:

没有答案