0

我目前正在使用可以在以下位置找到的 jquery 验证插件:http: //bassistance.de/jquery-plugins/jquery-plugin-validation/。我一直在搜索谷歌并且在弄清楚如何使错误出现在触发提交错误的文本框中时遇到问题。如果可以以更简单的方式实现此结果,我愿意使用不同的插件。

任何帮助将不胜感激,谢谢。

4

1 回答 1

2

我认为您需要调用错误放置功能:

    

    $("#form_id").validate({
        rules: {
            field: { required: true, email: true }
        },
        messages: {
            field: { required: "" , email: ""}
        },
        errorPlacement: function (error, element) {
            if (element.attr("id") == "field_id") {
                $('#target_error_placement_id').html(error);
            }
         }
    });

    

那是你的问题吗?

于 2012-04-18T23:01:25.313 回答