在bootstrap的modal模态框中使用bootstrapValidator时不重新验证问题

站长手记 作者: 2024-08-27 22:40:01

在bootstrap的modal模态框中使用bootstrapValidator时不重新验证问题


解决方法:

先定义一个方法,在modal弹框之前调用执行,重新绑定验证即可

bindValidation(){

         if($("#form").data('bootstrapValidator')){

             $("#form").data('bootstrapValidator').destroy();

             $('#form').data('bootstrapValidator', null);

         }

         $('#form').bootstrapValidator({

       message: '格式不正确',

       feedbackIcons: {

         valid: 'glyphicon glyphicon-ok',

         invalid: 'glyphicon glyphicon-remove',

         validating: 'glyphicon glyphicon-refresh'

       },

       fields: {

         organizeUnit: {

           message: '输入有误',

           validators: {

             notEmpty: {

               message: '举办单位不能为空'

             },

             stringLength: {

               max: 200,

               message: '举办单位不能超过200个字'

             },

           }

         },

       }

     });


     },


原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_69789.html