如何以错误对象数组的形式显示错误

时间:2018-12-31 11:55:35

标签: javascript jquery html

我想显示错误消息,这些错误消息构成了特定字段的错误数组。但是两个数组对象都没有加载到window.load上。

$(function () {

    var  conditions = [ 
        {
            firstName : {
                maxlength : 150,
                required : true,
                errormsg: "Please specify First Name for Primary Advisor to continue."
            }
        }
    ];
    var errorMsgs = [
        {
            fNameError: "Please specify First Name to continue."
        }
    ];
    $(".errorMsg").hide();

    $('input').focusout(function(){
        var ids = $(this).attr('id');
        var idValue = $(this).val();
        if (ids == 'firstName') {
            if (idValue == "") {                
                $("#fNameError").html(errorMsgs.fNameError);
                $("#fNameError").show();
                idValue = true; 
                return false;
            } else {
                $("#fNameError").hide();
            }
        }
    });
});

应该显示名字错误消息。

0 个答案:

没有答案