bootstrapValidator 表单验证
官网下载地址:http://plugins.jquery.com/bootstrapValidator/
html代码
- <!DOCTYPE html>
- <html>
- <head>
- <title>BootstrapValidator demo</title>
- <link rel="stylesheet" href="../vendor/bootstrap/css/bootstrap.css"/>
- <link rel="stylesheet" href="../dist/css/bootstrapValidator.css"/>
- <!-- Include the FontAwesome CSS if you want to use feedback icons provided by FontAwesome -->
- <!--<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" />-->
- <script type="text/javascript" src="../vendor/jquery/jquery-1.10.2.min.js"></script>
- <script type="text/javascript" src="../vendor/bootstrap/js/bootstrap.min.js"></script>
- <script type="text/javascript" src="../dist/js/bootstrapValidator.js"></script>
- </head>
- <body>
- <div class="container">
- <div class="row">
- <!-- form: -->
- <section>
- <div class="col-lg-8 col-lg-offset-2">
- <div class="page-header">
- <h2>Sign up</h2>
- </div>
- <form id="defaultForm" method="post" class="form-horizontal" action="target.php">
- <div class="form-group">
- <label class="col-lg-3 control-label">Full name</label>
- <div class="col-lg-4">
- <input type="text" class="form-control" name="firstName" placeholder="First name" />
- </div>
- <div class="col-lg-4">
- <input type="text" class="form-control" name="lastName" placeholder="Last name" />
- </div>
- </div>
- <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">
- <label class="col-lg-3 control-label">Retype password</label>
- <div class="col-lg-5">
- <input type="password" class="form-control" name="confirmPassword" />
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-3 control-label">Gender</label>
- <div class="col-lg-5">
- <div class="radio">
- <label>
- <input type="radio" name="gender" value="male" /> Male
- </label>
- </div>
- <div class="radio">
- <label>
- <input type="radio" name="gender" value="female" /> Female
- </label>
- </div>
- <div class="radio">
- <label>
- <input type="radio" name="gender" value="other" /> Other
- </label>
- </div>
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-3 control-label">Birthday</label>
- <div class="col-lg-5">
- <input type="text" class="form-control" name="birthday" /> (YYYY/MM/DD)
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-3 control-label">Languages</label>
- <div class="col-lg-5">
- <div class="checkbox">
- <label>
- <input type="checkbox" name="languages[]" value="english" /> English
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="languages[]" value="french" /> French
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="languages[]" value="german" /> German
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="languages[]" value="russian" /> Russian
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="languages[]" value="other" /> Other
- </label>
- </div>
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-3 control-label">Programming Languages</label>
- <div class="col-lg-5">
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="net" /> .Net
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="java" /> Java
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="c" /> C/C++
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="php" /> PHP
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="perl" /> Perl
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="ruby" /> Ruby
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="python" /> Python
- </label>
- </div>
- <div class="checkbox">
- <label>
- <input type="checkbox" name="programs[]" value="javascript" /> Javascript
- </label>
- </div>
- </div>
- </div>
- <div class="form-group">
- <label class="col-lg-3 control-label" id="captchaOperation"></label>
- <div class="col-lg-2">
- <input type="text" class="form-control" name="captcha" />
- </div>
- </div>
- <div class="form-group">
- <div class="col-lg-9 col-lg-offset-3">
- <button type="submit" class="btn btn-primary" name="signup" value="Sign up">Sign up</button>
- <button type="submit" class="btn btn-primary" name="signup2" value="Sign up 2">Sign up </button>
- <button type="button" class="btn btn-info" id="validateBtn">Manual validate</button>
- <button type="button" class="btn btn-info" id="resetBtn">Reset form</button>
- </div>
- </div>
- </form>
- </div>
- </section>
- <!-- :form -->
- </div>
- </div>
- <script type="text/javascript">
- $(document).ready(function() {
- // Generate a simple captcha
- function randomNumber(min, max) {
- return Math.floor(Math.random() * (max - min + ) + min);
- };
- $('#captchaOperation').html([randomNumber(, ), '+', randomNumber(, ), '='].join(' '));
- $('#defaultForm').bootstrapValidator({
- // live: 'disabled',
- message: 'This value is not valid',
- feedbackIcons: {
- valid: 'glyphicon glyphicon-ok',
- invalid: 'glyphicon glyphicon-remove',
- validating: 'glyphicon glyphicon-refresh'
- },
- fields: {
- firstName: {
- group: '.col-lg-4',
- validators: {
- notEmpty: {
- message: 'The first name is required and cannot be empty'
- }
- }
- },
- lastName: {
- group: '.col-lg-4',
- validators: {
- notEmpty: {
- message: 'The last name is required and cannot be empty'
- }
- }
- },
- username: {
- message: 'The username is not valid',
- validators: {
- notEmpty: {
- message: 'The username is required and cannot be empty'
- },
- stringLength: {
- min: ,
- max: ,
- message: 'The username must be more than 6 and less than 30 characters long'
- },
- regexp: {
- regexp: /^[a-zA-Z0-9_\.]+$/,
- message: 'The username can only consist of alphabetical, number, dot and underscore'
- },
- remote: {
- type: 'POST',
- url: 'remote.php',
- message: 'The username is not available'
- },
- different: {
- field: 'password,confirmPassword',
- message: 'The username and password cannot be the same as each other'
- }
- }
- },
- email: {
- validators: {
- emailAddress: {
- message: 'The input is not a valid email address'
- }
- }
- },
- password: {
- validators: {
- notEmpty: {
- message: 'The password is required and cannot be empty'
- },
- identical: {
- field: 'confirmPassword',
- message: 'The password and its confirm are not the same'
- },
- different: {
- field: 'username',
- message: 'The password cannot be the same as username'
- }
- }
- },
- confirmPassword: {
- validators: {
- notEmpty: {
- message: 'The confirm password is required and cannot be empty'
- },
- identical: {
- field: 'password',
- message: 'The password and its confirm are not the same'
- },
- different: {
- field: 'username',
- message: 'The password cannot be the same as username'
- }
- }
- },
- birthday: {
- validators: {
- date: {
- format: 'YYYY/MM/DD',
- message: 'The birthday is not valid'
- }
- }
- },
- gender: {
- validators: {
- notEmpty: {
- message: 'The gender is required'
- }
- }
- },
- 'languages[]': {
- validators: {
- notEmpty: {
- message: 'Please specify at least one language you can speak'
- }
- }
- },
- 'programs[]': {
- validators: {
- choice: {
- min: ,
- max: ,
- message: 'Please choose 2 - 4 programming languages you are good at'
- }
- }
- },
- captcha: {
- validators: {
- callback: {
- message: 'Wrong answer',
- callback: function(value, validator) {
- var items = $('#captchaOperation').html().split(' '), sum = parseInt(items[]) + parseInt(items[]);
- return value == sum;
- }
- }
- }
- }
- }
- });
- // Validate the form manually
- $('#validateBtn').click(function() {
- $('#defaultForm').bootstrapValidator('validate');
- });
- $('#resetBtn').click(function() {
- $('#defaultForm').data('bootstrapValidator').resetForm(true);
- });
- });
- </script>
- </body>
- </html>
bootstrapValidator 表单验证的更多相关文章
- BootstrapValidator 表单验证超详细教程
一. 引入js 和css文件 在有jquery和bootstrap的页面里引入 bootstrapValidator.js bootstrapValidator.css 链接: https://pan ...
- BootStrapValidator表单验证插件的学习和使用
BootStrapValidator表单验证插件的学习和使用 引入标签 <script type="text/javascript" src="https://cd ...
- bootstrapValidator表单验证插件
bootstrapValidator——一个很好用的表单验证插件,再也不用手写验证规则啦! bootstrapValidator官方文档:http://bootstrapvalidator.votin ...
- 表单验证——JqueryValidator、BootstrapValidator
表单验证两种方式: 1.JqueryValidator <!DOCTYPE html> <html lang="en"> <head> < ...
- jquery.validate.js 表单验证简单用法
引入jquery.validate.js插件以及Jquery,在最后加上这个插件的方法名来引用.$('form').validate(); <!DOCTYPE html PUBLIC " ...
- 【前端_js】Bootstrap之表单验证
Bootstrap表单验证插件bootstrapValidator使用方法整理 BootstrapValidator 表单验证超详细教程
- Bootstrap表单验证插件bootstrapValidator使用方法整理
插件介绍 先上一个图: 下载地址:https://github.com/nghuuphuoc/bootstrapvalidator 使用方法:http://www.cnblogs.com/huangc ...
- JS组件系列——Form表单验证神器: BootstrapValidator
前言:做Web开发的我们,表单验证是再常见不过的需求了.友好的错误提示能增加用户体验.博主搜索bootstrap表单验证,搜到的结果大部分都是文中的主题:bootstrapvalidator.今天就来 ...
- bootstrapValidator.js,最好用的bootstrap表单验证插件
前言:做Web开发的我们,表单验证是再常见不过的需求了.友好的错误提示能增加用户体验.博主搜索bootstrap表单验证,搜到的结果大部分都是文中的主题:bootstrapvalidator.今天就来 ...
随机推荐
- C#学习笔记(5)——大项目查找
说明(2017-5-27 16:34:39): 1. 注意事项: (0)设计窗体,添加一个dgv,添加5个列名,修改名字和绑定数据. (1)添加引用,system.data.sqlclient (2) ...
- 3. DNN神经网络的正则化
1. DNN神经网络的前向传播(FeedForward) 2. DNN神经网络的反向更新(BP) 3. DNN神经网络的正则化 1. 前言 和普通的机器学习算法一样,DNN也会遇到过拟合的问题,需要考 ...
- iOS微信实现第三方登录的方法
这篇文章主要介绍了iOS微信第三方登录实现的全过程,一步一步告诉大家iOS微信实现第三方登录的方法,感兴趣的小伙伴们可以参考一下 一.接入微信第三方登录准备工作.移动应用微信登录是基于OAuth2 ...
- Grunt经常使用插件及演示样例说明
下述给出了经常使用Grunt插件,并列举了部分插件演示样例: 插件名称 说明 Github地址 grunt-contrib-clean 清空文件和目录 https://github.com/grunt ...
- mvn打包spring工程成jar时报Unable to locate Spring NamespaceHandler for XML schema namespace错误解决办法
有一个小工程,使用了spring,在使用maven的assembly打包成独立可执行的jar包后,在执行时报如下错误:Configuration problem: Unable to locate S ...
- redis连接超时问题排查
连接池无法获取到连接或获取连接超时redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource f ...
- const_cast的应用
对于const变量,我们不能修改它的值,这是这个限定符最直接的表现.但是我们就是想违背它的限定希望修改其内容怎么办呢?于是我们可以使用const_cast转换符是用来移除变量的const限定符.con ...
- css 超详细文档
http://www.runoob.com/css/css-boxmodel.html
- Java finally语句是在try或catch的retrurn之前还是之后执行
若try或catch中没有return语句,则按正常执行流,从上到下,finally里的所有修改都生效. 这里讨论的是try或catch里有return或throw语句的情形,此情形比较让人迷惑. 总 ...
- Enums and Lookup Tables with EF Code First
With EntityFramework’s support for enums, there is no longer any need to include lookup tables in th ...