富贵资源网 Design By www.hznty.com
Bootstrap,来自 Twitter,是目前最受欢迎的前端框架。Bootstrap 是基于 HTML、CSS、JAVASCRIPT 的,它简洁灵活,使得 Web 开发更加快捷。
下面给大家分享bootstrap表单验证实例代码,具体代码如下所示:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ include file="../include/taglib.jsp"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <%@include file="../include/common.jsp" %> <script type="text/javascript" src="/UploadFiles/2021-04-02/form.js">--------------------------------------------------引入js----------------------------------------------------------------------
$(function () { //重置 $('#resetBtn').click(function(){ //清空表单验证内容 $('#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: '密码不能为空' }, stringLength: { min: 6, max: 15, 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表单验证实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...