0

jQuery ValidationerrorPlacement方法未触发。事实上,唯一触发的方法是showErrors. 我想我错过了一些东西。代码如下。

    errorContainer: '#error-messages',
    showErrors: function (errors) {
        $("#error-messages").dialog({
            modal: true,
            title: 'Errors',
            buttons: {
                Ok: function () {
                    $(this).dialog("close");
                }
            }
        });
        return true;
    },
    errorLabelContainer: "#error-messages ul",
    wrapper: "li",
    errorPlacement: function (error, element) {
        if (element.attr('name') == 'a') {      
            error.appendTo($('#restErrorDate'));
        }
    },
    debug: true
4

1 回答 1

0

我相信errorLabelContainer会胜出errorPlacement的。前者旨在在一个地方显示所有错误,使后者变得多余,因此不被使用。

在您的情况下,您想要UL其父级中的所有错误ID=error-messages

于 2013-01-14T00:30:38.650 回答