2

エラーの名前を関数に追加して、ユーザーがチェックする必要のあるフィールドを認識できるようにします。

これは私の現在の機能です:

showErrors: function(errorMap, errorList) {
            var summary = "Please check following errors:";
            $.each(errorList, function() {
                summary += " * " + this.message + "<br>" ;
            });
            $('.errorbox').html(summary);
            this.defaultShowErrors();
        },
        submitHandler: function() {
            alert("submitted!");
        }
    });

これどうやってするの?

4

2 に答える 2

2

Bassistance.de検証プラグインを使用している場合、最も簡単なオプションは、title各入力コントロールのパラメーターにわかりやすい指示メッセージを追加することです。このメッセージは、表示されるエラーメッセージの指示テキストとして使用されます。これがどのように機能するかを示す更新されたフィドルは次のとおりです:http://jsfiddle.net/xTdYr/3/

または、パラメータ.validate()を使用して、メソッドのインスタンス化呼び出しにルールを手動で追加することもできます。詳細については、 http : //docs.jquery.com/Plugins/Validation/rulesをご覧ください。messages

于 2011-11-07T11:02:49.817 に答える
0

オプションを拡張するmessages: {name:"name error"}

ライブデモ: http: //jsfiddle.net/gsBTC/

$('#newform').validate({
    errorPlacement: function(error, element) {
        if (element.is(":radio")) {
            error.prependTo(element.parent());
        }
        else { // This is the default behavior of the script  
            error.insertAfter(element);
            console.log('here');
        }
    },
    showErrors: function(errorMap, errorList) {
        var summary = "You have the following errors: \n";
        $.each(errorList, function() {
            summary += " * " + this.message + "\n";
        });
        $('#errordiv').html(summary);
        this.defaultShowErrors();
    },
    submitHandler: function() {
        alert("submitted!");
    }, 
    messages: {
     name   : "name error", 
     subject: "subject error",
     message: "message error"
   }
});
于 2011-11-07T11:09:06.043 に答える