0

私の質問は、質問ごとに空白のテキストが入力された場合に検証メッセージを表示するにはどうすればよいですか?

これがフィドルなので、テストできます:http: //jsfiddle.net/cbyJD/87/

以下はvalidation()関数コードです。

function validation() {

    // only keeping track of the final message
    var alertValidation = "",
        // toggle for showing only one error
        showOnlyOneError = true;

    $("input[data-type='qmark']").each(function(i) {  
        var questions = $(this).attr("data-qnum");
        var marks = parseInt($("[class*=q" + (i+1) + "_ans_text]").text()); 
        var txtinput = $(this).val(); 

        // the message for this question
        var msg = '';

        if (txtinput == '') {
            msg += "\n\u2022 You have not entered in a value in all the Indivdiaul Marks textbox \n";
        }

        if (marks < 0) {
            msg += "\n\u2022 Your Total Marks Remaining does not equal 0 \n - You Need To Remove " + Math.abs(marks) +  " Marks";   
        } else if (marks > 0) {
            msg += "\n\u2022 Your Total Marks Remaining does not equal 0 \n - You Have " + marks +  " Marks Remaining";   
        }

        // if there is an error for the question, add it to the main message
        if (msg.length) {
            alertValidation += alertValidation.length ? '\n\n' : '';
            alertValidation += "You have errors on Question Number: " + questions + "\n";
            alertValidation += msg;
            // stop if we only care about the first error
            return !showOnlyOneError;
        }
    });

    // show the error messages
    if (alertValidation != "") {
        alert(alertValidation);
        return false;
    }

    return true;
}
4

1 に答える 1

0

それはあなたの「最初のエラーの後のリターン」です。最初のボックスに入力しても他のエラーがある場合は、それらのエラーのみが表示されます。2番目のボックスは検査されず、空であることがわかりません。最も明白な修正はshowOnlyOneError = falseです。

これが希望どおりでない場合は、の目的のセマンティクスをshowOnlyOneErrorより詳細に説明する必要があります。

(また、ヒント:エラーを配列にプッシュしてから結合する"\n\n"方が、メッセージ文字列が空かどうかを毎回チェックするよりもはるかに簡単です。)

于 2012-12-20T00:34:15.713 に答える