BootstrapValidator . select 必须选择一个 .callback . select .option

Posted cb_za

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BootstrapValidator . select 必须选择一个 .callback . select .option相关的知识,希望对你有一定的参考价值。

 

 

1.对于:

 

 

 

 如果 只是引用 notEmpty , 不起作用.   因为 请选择教师  也是一个 option , 一个选项.

可以使用 callback.

 1             \'userId\':{
 2                 message :\'教师验证失败!\',
 3                 validators:{
 4                     notEmpty:{
 5                         message:\'教师不能为空\'
 6                     },
 7                       callback: {
 8                         message: \'必须选择一个教师\',
 9                         callback: function(value, validator) {
10 
11                             if (value == 0) {
12                                 return false;
13                             } else {
14                                 return true;
15                             }
16 
17                         }
18                     }
19                 }
20             },
21             \'studentId\':{
22                 message :\'学生验证失败!\',
23                 validators:{
24                     notEmpty:{
25                         message:\'学生不能为空\'
26                     },
27                     callback: {
28                       message: \'必须选择一个学生\',
29                       callback: function(value, validator) {
30 
31                           if (value == 0) {
32                               return false;
33                           } else {
34                               return true;
35                           }
36 
37                       }
38                   }
39                 }
40             }

 

以上是关于BootstrapValidator . select 必须选择一个 .callback . select .option的主要内容,如果未能解决你的问题,请参考以下文章

bootstrapValidator表单校验插件使用教程

[bootstrapValidator] - bootstrap的验证工具

Bootstrapvalidator 在动态输入字段中不起作用

XPages 中的 bootstrapValidator

Bootstrap Modal ajax 保存多条记录,bootstrapValidator

$(...).bootstrapValidator 不是 Laravel 中的函数错误