1

在此处输入图像描述我有一个非强制性的“txtPhone”输入过滤器,但只能接受电话号码,所以:

 <label class="control-label">Phone</label>
<input type="text" id="txtPhone" class="form-control intonly" maxlength="12" placeholder="Phone" name="Phone">

引导验证

Phone: {
                        validators: {
                            regexp: {
                                regexp: /^((091|\+91)?|\((091|\+91)?\)|(91)?|\(91\)|0)? ?[7-9][0-9]{9}$/,
                                message: 'The Indian Phone No must contain 10 digits'
                            },

                        }
                    },

但是当我单击文本框中显示的提交按钮时,勾选。

4

1 回答 1

1

经过长时间的挣扎 JesusGrace 我找到了答案

  Bootstrap Validation

     Phone: {
                     enabled: false,
                    validators: {
                        regexp: {
                            regexp: /^((091|\+91)?|\((091|\+91)?\)|(91)?|\(91\)|0)? ?[7-9][0-9]{9}$/,
                            message: 'The Indian Phone No must contain 10 digits'
                        },

                    }
                },


        .on('keyup', '[name="Phone"]', function () {
                var isEmpty = $(this).val() == '';
                $('#form1')
                       .formValidation('enableFieldValidators', 'Phone', !isEmpty);
                // Revalidate the field when user start typing in the Phone field
                if ($(this).val().length == 1) {
                    $('#form1').formValidation('validateField', 'Phone')
                }
            })
于 2016-08-03T11:38:27.917 回答