动态添加多个字段的Bootstrap验证

时间:2014-12-18 21:49:41

标签: javascript jquery twitter-bootstrap validation

我正在使用bootstrap v3.1.1,我想验证一个带有bootstrap验证的表单,但是包含一个克隆3个字段的按钮。克隆一切都很好,但我无法验证克隆的字段。这是我的HTML表单:

<form id="myForm" action="myAction">
    <div class="row" id="line_1">
        <div class="col-md-2 form-group">
            <input type="text" class="form-control input-sm" id="idFirstField_1" name="firstField[]">
        </div>
        <div class="col-md-2 form-group">
            <input type="text" class="form-control input-sm" id="idSecondField_1" name="secondField[]">
        </div>
        <div class="col-md-2 form-group">
            <input type="text" class="form-control input-sm" id="idThirdField_1" name="thirdField[]">
        </div>
    </div>
    <a id="cloneButton">add line</a>
</form>

在JavaScript文件中我有:

    $(document).ready(function () {
    var count = 2;
    $('#cloneButton').click(function () {
        var klon = $('#line_1');
        klon.clone().attr('id', 'line_' + (++count)).insertAfter($('#line_1'));
        $('#line_' + count).children('div').children('input').each(function () {
            $(this).val('');
            var oldId = $(this).attr('id').split('_');
            $(this).attr('id', oldId[0] + '_' + count);
        });
    });

    //For validating the fields: 
    $('#myForm').bootstrapValidator({
        fields: {
            'firstField[]': {
                validators: {
                    notEmpty: {
                        message: 'Enter a value'
                    }
                }
            },
            'secondField[]': {
                validators: {
                    notEmpty: {
                        message: 'Enter a value'
                    }
                }
            },
            'thirdField[]': {
                validators: {
                    notEmpty: {
                        message: 'Enter a value'
                    }
                }
            }
        }
    });
});

我现在必须使用像这样的事情

$('#myForm').bootstrapValidator('addField', klon.find('[name="firstField[]"]'));

对于每个领域,但我现在不知道如何正确地做到这一点。请帮我。谢谢!

2 个答案:

答案 0 :(得分:2)

如果在addField循环中插入方法input,它应该可以正常工作。我还建议您将第一个row保存为模板。

var template = $('#line_1').clone();
var options = {
    fields: {
        'firstField[]': {
            validators: {
                notEmpty: {
                    message: 'Enter a value 1'
                }
            }
        },
        'secondField[]': {
            validators: {
                notEmpty: {
                    message: 'Enter a value 2'
                }
            }
        },
        'thirdField[]': {
            validators: {
                notEmpty: {
                    message: 'Enter a value 3'
                }
            }
        }
    }
};
$('#myForm').bootstrapValidator(options);

$('#cloneButton').click(function () {
    var rowId = $('.row').length + 1;
    var validator = $('#myForm').data('bootstrapValidator');
    var klon = template.clone();          
    klon.attr('id', 'line_' + rowId)
        .insertAfter($('.row').last())
        .find('input')
        .each(function () {
            $(this).attr('id', $(this).attr('id').replace(/_(\d*)$/, "_"+rowId));
            validator.addField($(this));
        })                   
});

FIDDLE

答案 1 :(得分:0)

这个答案不完全是针对这个问题的,但是如果有人想动态添加其他字段,那么他们可以使用它。

$('#myForm').formValidation('addField', 'fourthField[]', {
            validators: {
                    notEmpty: {
                        message: 'Enter a value 4'
                    }
                },
});

语法:$("#form_name").formValidation("addField",'no of the field',{validation});