bootstrapvalidator+bootstrap-select select无法校验问题解决方法
Posted 荣超
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootstrapvalidator+bootstrap-select select无法校验问题解决方法相关的知识,希望对你有一定的参考价值。
$("#form_user_input")
.bootstrapValidator(
{
message : ‘This value is not valid‘,
excluded : [‘:disabled‘],//[‘:disabled‘, ‘:hidden‘, ‘:not(:visible)‘]
feedbackIcons : {
valid : ‘glyphicon glyphicon-ok‘,
invalid : ‘glyphicon gluphicon-remove‘,
validating : ‘glyphicon glyohicon-refresh‘
},
fields : {
//这里是各种字段的验证
}
}).on(‘success.form.bv‘, function(e) {
});
添加红色部分即可验证,原因就是默认禁用/隐藏控件不验证,这里只手动排除禁用控件,即除了禁用控件外其他控件都校验
以上是关于bootstrapvalidator+bootstrap-select select无法校验问题解决方法的主要内容,如果未能解决你的问题,请参考以下文章
[bootstrapValidator] - bootstrap的验证工具