溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

BootStrapValidator初使用教程詳解

發(fā)布時間:2020-10-10 16:49:36 來源:腳本之家 閱讀:138 作者:青衣故人 欄目:web開發(fā)

bootstrap:能夠增加兼容性的強大框架.

因為項目需要數(shù)據(jù)驗證,看bootstrapValidator 還不錯,就上手一直,完美兼容,話不多說。

bootstrapValidator的github地址

需要引用css:

bootstrap.min.css

bootstrapValidator.min.css

js:

jQuery-1.10.2.min.js

bootstrap.min.js

bootstrapValidator.min.js

以上這些都是必須的。

先上個簡單的例子,只要導入相應(yīng)的文件可以直接運行:

<!DOCTYPE html>
<html>
<head>
  <title>Using Ajax to submit data</title>
  <link rel="stylesheet" href="css/bootstrap.css" rel="external nofollow" />
  <link rel="stylesheet" href="css/bootstrapValidator.css" rel="external nofollow" />
  <script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
  <script type="text/javascript" src="js/bootstrap.min.js"></script>
  <script type="text/javascript" src="js/bootstrapValidator.js"></script>
</head>
<body>
<div class="container">
  <!-- class都是bootstrap定義好的樣式,驗證是根據(jù)input中的name值 -->
  <form id="defaultForm" method="post" class="form-horizontal" action="aaa.html">
    <!-- 下面這個div必須要有,插件根據(jù)這個進行添加提示 -->
    <div class="form-group">
      <label class="col-lg-3 control-label">Username</label>
      <div class="col-lg-5">
        <input type="text" class="form-control" name="username" />
      </div>
    </div>
    <div class="form-group">
      <label class="col-lg-3 control-label">Email address</label>
      <div class="col-lg-5">
        <input type="text" class="form-control" name="email" />
      </div>
    </div>
    <div class="form-group">
      <label class="col-lg-3 control-label">Password</label>
      <div class="col-lg-5">
        <input type="password" class="form-control" name="password" />
      </div>
    </div>
    <div class="form-group">
      <div class="col-lg-9 col-lg-offset-3">
        <button type="submit" class="btn btn-primary">Sign up</button>
      </div>
    </div>
  </form>
</div>
<script type="text/javascript">
  $(document).ready(function() {
    /**
     * 下面是進行插件初始化
     * 你只需傳入相應(yīng)的鍵值對
     * */
    $('#defaultForm').bootstrapValidator({
      message: 'This value is not valid',
      feedbackIcons: {/*輸入框不同狀態(tài),顯示圖片的樣式*/
        valid: 'glyphicon glyphicon-ok',
        invalid: 'glyphicon glyphicon-remove',
        validating: 'glyphicon glyphicon-refresh'
      },
      fields: {/*驗證*/
        username: {/*鍵名username和input name值對應(yīng)*/
          message: 'The username is not valid',
          validators: {
            notEmpty: {/*非空提示*/
              message: '用戶名不能為空'
            },
            stringLength: {/*長度提示*/
              min: 6,
              max: 30,
              message: '用戶名長度必須在6到30之間'
            }/*最后一個沒有逗號*/
          }
        },
        password: {
          message:'密碼無效',
          validators: {
            notEmpty: {
              message: '密碼不能為空'
            },
            stringLength: {
              min: 6,
              max: 30,
              message: '用戶名長度必須在6到30之間'
            }
          }
        },
        email: {
          validators: {
            notEmpty: {
              message: 'The email address is required and can\'t be empty'
            },
            emailAddress: {
              message: 'The input is not a valid email address'
            }
          }
        }
      }
    });
  });
</script>
</body>
</html>

當然,以上都是插件寫好的規(guī)則,如果想自己加匹配規(guī)則怎么辦呢?

如下只要在input相對應(yīng)的鍵值中加入一個regexp:{}鍵值對(在上面的js基礎(chǔ)上修改)

username: {/*鍵名和input name值對應(yīng)*/
          message: 'The username is not valid',
          validators: {
            notEmpty: {/*非空提示*/
              message: '用戶名不能為空'
            },
            regexp: {/* 只需加此鍵值對,包含正則表達式,和提示 */
              regexp: /^[a-zA-Z0-9_\.]+$/,
              message: '只能是數(shù)字和字母_.'
            },
            stringLength: {/*長度提示*/
              min: 6,
              max: 30,
              message: '用戶名長度必須在6到30之間'
            }/*最后一個沒有逗號*/
          }
        },

以上所述是小編給大家介紹的BootStrapValidator初使用教程詳解,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI