欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Bootstrap 表单验证formValidation 实现表单动态验证功能

程序员文章站 2023-11-09 10:27:22
动态添加input并动态添加新验证方式! init状态:   点击“+”后:   验证后: 知识点: 1 先去官网下载: 2 导入文...

动态添加input并动态添加新验证方式!

init状态:

Bootstrap 表单验证formValidation 实现表单动态验证功能 

点击“+”后:

Bootstrap 表单验证formValidation 实现表单动态验证功能 

验证后:

Bootstrap 表单验证formValidation 实现表单动态验证功能

知识点:

1 先去官网下载:

2 导入文件,注意事项我就不多说了在远程验证那篇我已经讲过。

3 用到的关键字:addfield、removefield、different

4注意一点就是官网里的例子他们的name是不一样的。我这里比较偷懒。且项目ajax的时候不是用的form表单提交,而是自己并接成json提交,所以x,y的name的名字一样。

好开始:

首先是在html里面必须要有一个 “+” 标记为addpos,然后有一个“-” 标记为“removpos,

<div id="posxy" class=" panel panel-default ">
<!-- 添加-->
                <div class="panel-heading" >设置车库xy坐标</div>
                <div class="addpos form-group">
                  <div class="col-lg-4 col-sm-4 col-xs-4" >
                    <input type="text" class="form-control text-left" name="garageno" placeholder="停车库" style="min-width: 150px"/>
                  </div>
                  <div class="col-lg-3 col-sm-3 col-xs-3" >
                    <input type="text" class="form-control" name="posx" placeholder="x"/>
                  </div>
                  <div class="col-lg-3 col-sm-3 col-xs-3" >
                    <input type="text" class="form-control" name="posy" placeholder="y"/>
                  </div>
                  <div class="col-lg-2 col-sm-2 col-xs-2" >
                    <button type="button" class="btn btn-default addbuttonpos"><i class="glyphicon glyphicon-plus"></i></button>
                  </div>
                </div>
                <!-- 删除 -->
                <div class="removpos form-group hide" id="postemplate">
                  <div class="col-lg-4 col-sm-4 col-xs-4" >
                    <input type="text" class="form-control text-left" name="garageno" placeholder="停车库" style="min-width: 150px"/>
                  </div>
                  <div class="col-lg-3 col-sm-3 col-xs-3" >
                    <input type="text" class="form-control" name="posx" placeholder="x"/>
                  </div>
                  <div class="col-lg-3 col-sm-3 col-xs-3" >
                    <input type="text" class="form-control" name="posy" placeholder="y"/>
                  </div>
                  <div class="col-lg-2 col-sm-2 col-xs-2" >
                    <button type="button" class="btn btn-default removebuttonpos"><i class="glyphicon glyphicon-minus"></i></button>
                  </div>
                </div>
</div>

然后来个js:

/**
   * pos添加
   * @param $that
   */
  function addbuttonposclick($that){
    var panelid = $that.parents(".toptemplate").attr("id");
    var $form=$('#'+panelid+"form")
//    defaultpanel(panelid)
    var bookindex=typeobj[panelid]++;
    console.log(panelid,bookindex)
    var $template = $('#'+panelid+' #postemplate'),
      $clone =$template
        .clone()
        .removeclass('hide')
        .removeattr('id')
        .attr('step',bookindex)
        .insertbefore($template);
    // update the name attributes
    $clone
      .find('[name="garageno"]').attr({"step":bookindex,"name":"garageno"+bookindex})
      .click(function(){
        clickbindgarageno(panelid,bookindex)
      }).end()
      .find('[name="posx"]').attr("step",bookindex).end()
      .find('[name="posy"]').attr("step",bookindex).end()
    // add new fields
    // note that we also pass the validator rules for new field as the third parameter
//    $('#defaultform')
//    gfieldarr.push(panelid+'[' + bookindex + '].garageno')
    $form
      .formvalidation('addfield', "garageno"+bookindex, formobj.sameas(false))
      .formvalidation('addfield', 'posx', myposxy)
      .formvalidation('addfield', 'posy', myposxy)
  }
 function myformvalidation($form){
//    var $form=$("#"+$panelid+"form")
    $form
        .formvalidation({
          framework: 'bootstrap',
          locale: 'zh_cn',
          message: '值无效',
          icon: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
          },
          fields:
          {
            myimg:{
              validators: {
                notempty: {
                  message: '请选择一个文件上传'
                },
                file: {
                  extension: 'jpeg,jpg,png',
                  type: 'image/jpeg,image/png',
                  maxsize: 1*1024 * 1024,
                  message: '该文件必须为jpeg,jpg,png格式和必须不超过1mb的大小'
                }
              }
            }
          }
        })
        .on('click', '.addbuttonpos', function() {
          addbuttonposclick($(this))
        })
        //remove button click handler
        .on('click', '.removebuttonpos', function() {
          var $that   = $(this)
          var panelid = $that.parents(".toptemplate").attr("id");
//           defaultpanel(panelid)
          var $row = $(this).parents('.form-group'),
              index = $row.attr('step');
//          var myname='[' +index + ']'
          var bookindex= typeobj[panelid]--;
//          $('#defaultform')
          $form
                   .formvalidation('removefield', $row.find('[name="garageno'+bookindex+'"]'))
                   .formvalidation('removefield', $row.find('[name="posx"]'))
                   .formvalidation('removefield', $row.find('[name="posy"]'))
          // remove element containing the fields
          $row.remove();
        })

因为我的项目有多个表单提交。但是业务相似所以都用这几个函数

比如说: var form=(“#”+panelid+”form”)用panelid来区分是多个表单。

上面说到x,y的name用的是一样的。但是细心的就会发现garageno是不一样的名称。后面添加了bookindex,为什么呢。

因为业务需求。同一个表单中的garageno的值不可以相同。好比如说每一个人的身份号不可以相同但是你和你同桌都可以是女的也都可以18岁。。。。

上面已经很好的使用了关键字removefield和addfield

garageno的值不可以相同。怎么弄呢。请看下面:

var differentvalid= function(diffstr){
    var vv={
      validators: {
        different: {
          field: diffstr,
          message: '不能有相同的停车库'
        }
      }
    }
    return vv
  }

当用户输入garageno的值后:

clickbindgarageno(panelid,idx){
    $form.formvalidation('addfield', "garageno"+idx, differentvalid(diffarr.tostring()))
      var fv =$form.data('formvalidation');
      fv.validate();
}

这个diffarr.tostring(),是啥呢。这个是我遍历了所有条目的garageno的name的字符串例如:有3条条目,idx=1 焦点在1上。那么diffarr=[“garageno0”,”garageno2”,]

Bootstrap 表单验证formValidation 实现表单动态验证功能 

注意一个bug:如果用多了input,你会发现有时input不会自动验证。比如说验证日期的时候用了日期插件点击日期回来后input没有验证。

这个时候就需要再手动验证一次。 上面那段代码是 先添加新的验证方式,然后验证整个表单。如果你只是想要验证一个input 请用:

$form.formvalidation('revalidatefield', "field");

还有一个关于提交的细节:

当我们没有设置提交按钮。比起提交按钮在form表单内。他这个插件是会帮你自动提交。但是你也会发现。如果你提交服务失败。他会自动刷新然后你的页面就变成404页面或其他错误页面。

但是有的时候我们不想他刷新。咋办?

网上好多ajax 提交不刷新的教程。。我比较喜欢用一种就是。我不把提交按钮放在form里面。然后:

$btn.click(function(){
//....
retrun false;
)}

以上所述是小编给大家介绍的bootstrap 表单验证formvalidation 实现表单动态验证功能,希望对大家有所帮助