基于BootstrapValidator的Form表单验证(24)

Form表单进行数据验证是十分必要的,我们可以自己写JS脚本或者使用JQuery Validate 插件来实现。对于Bootstrap而言,利用BootstrapValidator来做Form表单验证是个相当不错的选择,两者完全兼容,我们也不用去关注CSS样式等美工效果。

0x01 引入BootstrapValidator

官网:BootstrapValidator,作为一个纯粹的使用者,我们可以在上面的链接处下载相关文件并引入,也可以利用CDN方式引入:

<link href="https://cdn.bootcss.com/bootstrap-validator/0.5.3/css/bootstrapValidator.min.css">
<script src="https://cdn.bootcss.com/bootstrap-validator/0.5.3/js/bootstrapValidator.min.js"></script>

0x02 用户注册实例

下面使用一个用户注册的实例,来总结BootstrapValidator的基本使用方法(其中的JS和CSS文件的引入,请根据自己的实际位置进行调整):

<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <title>用户注册</title> <meta content="width=device-width, initial-scale=1"> <link href=""> <link href="https://cdn.bootcss.com/bootstrap-validator/0.5.3/css/bootstrapValidator.min.css"> <script src="https://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script> <script src=""></script> <script src="https://cdn.bootcss.com/bootstrap-validator/0.5.3/js/bootstrapValidator.min.js"></script> </head> <body> <div> <div> <h3>用户注册</h3> </div> <div> <form method="POST" action="用户注册.html"> <div> <!--注册的用户名--> <label for="username">*请输入注册用户名:</label> <input type="text" placeholder="请输入注册用户名"> </div> <div> <!--注册密码--> <label for="password">*请输入注册密码:</label> <input type="password" placeholder="请输入注册密码"> </div> <div> <!--确认密码--> <label for="repassword">*请输入确认密码:</label> <input type="password" placeholder="请输入确认密码"> </div> <div> <label for="phone">*请输入手机号码:</label> <input type="text" placeholder="请输入手机号码"> </div> <div> <label for="email">*请输入电子邮箱:</label> <input type="text" placeholder="请输入电子邮箱"> </div> <div> <label for="inviteCode">*请输入邀请码:</label> <input type="text" placeholder="请输入邀请码"> </div> <div> <button type="submit">提交注册</button> </div> </form> </div> </div> <script> $(function () { <!--数据验证--> $("#registerForm").bootstrapValidator({ message:'This value is not valid', // 定义未通过验证的状态图标 feedbackIcons: {/*输入框不同状态,显示图片的样式*/ valid: 'glyphicon glyphicon-ok', invalid: 'glyphicon glyphicon-remove', validating: 'glyphicon glyphicon-refresh' }, // 字段验证 fields:{ // 用户名 username:{ message:'用户名非法', validators:{ // 非空 notEmpty:{ message:'用户名不能为空' }, // 限制字符串长度 stringLength:{ min:3, max:20, message:'用户名长度必须位于3到20之间' }, // 基于正则表达是的验证 regexp:{ regexp:/^[a-zA-Z0-9_\.]+$/, message:'用户名由数字字母下划线和.组成' } } }, // 密码 password:{ message:'密码非法', validators:{ notEmpty:{ message:'密码不能为空' }, // 限制字符串长度 stringLength:{ min:3, max:20, message:'密码长度必须位于3到20之间' }, // 相同性检测 identical:{ // 需要验证的field field:'password', message:'两次密码输入不一致' }, // 基于正则表达是的验证 regexp:{ regexp:/^[a-zA-Z0-9_\.]+$/, message:'密码由数字字母下划线和.组成' } } }, // 确认密码 repassword:{ message:'密码非法', validators:{ notEmpty:{ message:'密码不能为空' }, // 限制字符串长度 stringLength:{ min:3, max:20, message:'密码长度必须位于3到20之间' }, // 相同性检测 identical:{ // 需要验证的field field:'password', message:'两次密码输入不一致' }, // 基于正则表达是的验证 regexp:{ regexp:/^[a-zA-Z0-9_\.]+$/, message:'密码由数字字母下划线和.组成' } } }, // 电子邮箱 email:{ validators:{ notEmpty:{ message:'邮箱地址不能为空' }, emailAddress:{ message:'请输入正确的邮箱地址' } } }, // 手机号码 phone:{ validators:{ notEmpty:{ message:'手机号码不能为空' }, stringlength:{ min:11, max:11, message:'请输入11位手机号码' }, regexp:{ regexp:/^1[3|5|8]{1}[0-9]{9}$/, message:'请输入正确的手机号码' } } }, // 邀请码 inviteCode:{ validators:{ notEmpty:{ message:'邀请码不能为空' }, stringlength:{ min:9, max:9, message:'请输入9位邀请码' }, regexp:{ regexp:/^[\w]{8}$/, message:'邀请码由数字和字母组成' } } } } }) }) </script> </body> </html>

验证效果如下:

基于BootstrapValidator的Form表单验证(24)

0x03 后记

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwfjpy.html