BootStrap表单验证实例代码

前端之家收集整理的这篇文章主要介绍了BootStrap表单验证实例代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Bootstrap,来自 Twitter,是目前最受欢迎的前端框架。Bootstrap 是基于 HTML、CSS、JAVASCRIPT 的,它简洁灵活,使得 Web 开发更加快捷。

下面给大家分享bootstrap表单验证实例代码,具体代码如下所示:

<%@ include file="../include/taglib.jsp"%> <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <%@include file="../include/common.jsp" %> 表单测试 用户姓名:
用户姓名"/>
邮件"/>
Box" id="languages" name="languages" value="中文" style="margin-top:12px"/>中文
Box" id="languages" name="languages" value="英语" style="margin-top:12px"/>英语
Box" id="languages" name="languages" value="德语" style="margin-top:12px"/>德语
Box" id="languages" name="languages" value="韩语" style="margin-top:12px"/>韩语

--------------------------------------------------引入js----------------------------------------------------------------------

内容 $('#formTest')[0].reset(); //清空表单验证信息 $('#formTest').bootstrapValidator('resetForm'); }); function randomNumber(min,max) { return Math.floor(Math.random() * (max - min + 1) + min); }; $('#callbackshow').html([randomNumber(1,100),'+',randomNumber(1,200),'='].join(' ')); //校验 $('#formTest').bootstrapValidator({ message : '',FeedbackIcons: { valid: 'glyphicon glyphicon-ok',invalid: 'glyphicon glyphicon-remove',validating: 'glyphicon glyphicon-refresh' },//验证用户名字 fields: { username: { message: '用户名验证失败',validators: { notEmpty: { message: '用户名不能为空' },stringLength: { min: 2,max: 4,message: '名字长度只能为2-4位' },regexp: { regexp: /^[\u2E80-\u9FFF]+$/,message: '只能为汉字' },} },//end username birthday:{ validators: { notEmpty: { message: '生日不能为空' },date:{ format: 'YYYY/MM/DD',message:'输入正确的日期格式,YYYY/MM/DD' } } },//end birthday //验证email email: { validators: { notEmpty: { message: '邮箱地址不能为空' },emailAddress: { message: '邮箱地址不对' } } },//end email password:{ validators: { notEmpty: { message: '密码不能为空' },stringLength: { min: 6,max: 15,message: '密码长度最小为6最多为15' },regexp: { regexp: /^[\d]+$/,message: '只能为数字' },} },//end password confirmPassword:{ validators: { notEmpty: { message: '密码不能为空' },message: '密码长度最小为6最多为15' },identical: { field: 'password',message: '2次密码不一致' },//end confirmPassword 'languages': { validators: { notEmpty: { message: '至少要选择一个' },choice: { min: 2,max: 3,message: '选择2-3个' } } },//end languages callbacktest:{ validators: { callback:{ message:'输入错误',callback:function(value,validator){ var items = $('#callbackshow').html().split(' '),sum = parseInt(items[0]) + parseInt(items[2]); console.log(sum); return value == sum; } } } },//end callbacktest } });

//表单提交
$("#formTest").submit(function(ev){ev.preventDefault();});
$("#submitBtn").on("click",function(){
var bootstrapValidator = $("#formTest").data('bootstrapValidator');
bootstrapValidator.validate();
if(bootstrapValidator.isValid()){
$.ajaxRequest({
url : 'www.baidu.com',});
}else{
return;
}
});
});

以上所述是小编给大家介绍的BootStrap表单验证实例代码。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

原文链接:https://www.f2er.com/bootstrap/42521.html
bootstrapbootstrap表单验证

猜你在找的Bootstrap相关文章