在日常生活中,凡是需要表单验证的都会用到正则验证.下面拿一个简单的带有模态框的正则验证的小demo看一下
<style>
/* 遮罩层 */
.mask{
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,0.5);
display: none;
/* display: flex; */
/* flex-direction: column; */
justify-content: space-around;
align-items: center;
flex: 1;
}
.con {
width: 450px;
height: 404px;
/* border: 1px solid; */
background-color: #fff;
}
.title {
height:40px;
width: 450px;
color: #db6419;
border-bottom: 3px solid orange;
}
.title p{
text-align: center;
line-height: 40px;
font-weight: 700;
font-size: 18px;
}
.form input {
width: 405px;
height: 30px;
text-indent: 1em;
border-radius: 10px;
border: #8d898a 1px solid;
}
.form input,
p {
margin-top: 0;
margin-left: 25px;
margin-top: 15px;
}
.con button {
width: 114px;
height: 40px;
outline: none;
border: none;
justify-content: space-around;
}
.con p {
font-size: 12px;
color: #8d898a;
}
/* 按钮 */
.btn{
display: flex;
justify-content: space-around;
cursor: pointer;
}
.btn .close{
background-color: #8b898a;
border-radius: 15px;
}
.btn .login{
background-color: orange;
color: #fff;
border-radius: 15px;
}
</style>
</head>
<body>
<!-- 注册按钮 -->
<button id="submitBtn">注册</button>
<!-- 模态框 -->
<div class="mask">
<div class="con">
<!-- 标题 -->
<div class="title">
<p>用户注册</p>
</div>
<!-- 表单-->
<div class="form">
<input class="username" type="text" placeholder="请输入用户名">
<p>中文、字母、数字、下划线长度2-12位</p>
<input class="email" type="email" name="" id="" placeholder="请输入邮箱">
<p>有效的邮箱</p>
<input class="password" type="password" name="" id="" placeholder="请输入密码">
<p>字母、数字、下划线长度6-12位</p>
</div>
<!-- 按钮 -->
<div class="btn">
<button class="close">关闭</button>
<button class="login">注册</button>
</div>
</div>
</div>
<!-- 最外层大盒子 -->
<script>
// 获取元素
let submitBtn = document.querySelector('#submitBtn')
let mask = document.querySelector('.mask')
// 关闭按钮
let close = document.querySelector('.btn .close')
// 注册按钮
let login = document.querySelector('.btn .login')
// 用户名
let username = document.querySelector('.form .username')
let email = document.querySelector('.form .email')
let password = document.querySelector('.form .password')
let ps = document.querySelectorAll('.form p')
// 正则
let useReg = /^[\u4E00-\u9FA5A-Za-z0-9]{2,20}$/
let emaReg = /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/
let psdReg = /^[a-zA-Z]\w{5,17}$/
// 记录是否符合正则
let useFlag = false
let emaFlag = false
let psdFlag = false
// 给按钮注册点击事件
submitBtn.addEventListener('click',function(){
mask.style.display = "flex"
})
// 关闭按钮点击的时候 关闭模态框
close.addEventListener('click',function(){
mask.style.display="none"
})
// 遍历所有的正则验证的提示文字
ps.forEach(function(p,index){
// 用户名的input框注册失焦事件
username.addEventListener('blur',function(){
if(useReg.test(this.value)){
console.log(this.value);
ps[0].style.color="#8b898a"
useFlag = true
}else{
ps[0].style.color="red"
console.log(ps[index]);
useFlag = false
}
})
// 邮箱input框的失焦事件
email.addEventListener('blur',function(){
if(emaReg.test(this.value)){
console.log(this.value);
ps[1].style.color="#8b898a"
emaFlag = true
}else{
ps[1].style.color="red"
emaFlag = false
}
})
})
// 密码的input输入框的失焦事件
password.addEventListener('blur',function(){
if(psdReg.test(this.value)){
ps[2].style.color="#8b898a"
psdFlag = true
}else{
ps[2].style.color="red"
psdFlag = false
}
})
//登陆
login.addEventListener('click',function(){
if(useFlag&&emaFlag&&psdFlag){
location.href='https:www.baidu.com'
}else{
alert('请输入正确的格式')
}
})
</script>
</body>
</html>
- 循环遍历正则验证input框内容合法性
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- js常用的一些正则验证文本框
只允许输入数字和-onKeyUp="value=value.replace(/[^-\d]/g,'')" onafterpaste="value=value.replac ...
- Asp.net MVC利用Ajax.BeginForm实现bootstrap模态框弹出,并进行前段验证
1.新建Controller public ActionResult Index() { return View(); } public ActionResult Person(int? id) { ...
- 模态框的理解 ,jQ: loading,进度条, 省级联动 表单验证 插件
模态框: 打开一个弹框 不关闭它就不能做框外的操作 必须关闭或弹出另外的弹框 加载延迟loading + 进度条只要有请求 就处理一下监控ajax 全局事件jquery: $('#box').ajax ...
- bootstrap下使用模态框,在模态框内输入框中回车时,模态框自动关闭的问题及解决方法
使用bootstrap下模态框,构建表单提交页面,但是输入框中直接回车,本来是想执行一下验证,但是却导致模态框自动关闭了. 遇到这样的问题,只需要先禁止回车触发表单提交 $(do ...
- bootstrap模态框远程加载网页的正确处理方式
bootstrap模态框远程加载网页的方法 在bootsrap模态框文档里给出了这个方法: 使用链接模式 <a data-toggle="modal" href=" ...
- Bootstrap3 模态框 select2搜索框无法输入
<div class="modal fade" role="dialog" aria-hidden="true" data-backd ...
- 整理:手机端弹出提示框,使用的bootstrap中的模态框(modal,弹出层),比kendo弹出效果好
效果图: 我的代码示例: <!--提示模态框--> <div class="modal fade" id="myModal" tabindex ...
- 身份证真实性校验js、mini ui身份证长度正则验证
身份证号码真实性校验 <input type="text" value="请输入身份证号" id="cards" ><bu ...
随机推荐
- 【JavaWeb】【JSP】JSP传值到Servlet后端为NULL的问题
JSP传值到Servlet后端为NULL的问题 哔哩哔哩@萌狼蓝天 博客:萌狼工作室-博客园 联系QQ:#3447902411# | 仅限技术交流可添加 | 添加请说明你的方向和来意 1.目标文件路径 ...
- abp (.net 5)设置默认请求语言为简体中文
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-5.0 默认有3个prov ...
- Java动态脚本Groovy读取配置文件
前言:请各大网友尊重本人原创知识分享,谨记本人博客:南国以南i 核心涉及: @Value:作用是通过注解将常量.配置文件中的值.其他bean的属性值注入到变量中,作为变量的初始值. @Configur ...
- 七种可能 | Linux丢包故障的定位与解决
出处[云英公众号]:https://mp.weixin.qq.com/s?__biz=MzI1NzM3NTYxMw==&mid=2247483685&idx=1&sn=95c8 ...
- 当页面是本地页面时,通过ajax访问tomcat里的action,传递的参数在action里并不能识别
当页面是本地页面时,通过ajax访问tomcat里的action,传递的参数在action里并不能识别,这个问题困扰了我不少时间. 在测试时发现此问题
- Various methods for capturing the screen
Explains techniques for capturing the screen programmatically. Download GDI source code - 72.1 Kb Do ...
- react 实现tab切换 三角形筛选样式
这次使用的是react的class 类组件 import React, { Component } from 'react' import { LeftOutline, SearchOutli ...
- Linux生成SSH密钥对
执行 ssh-keygen -t rsa -P "" -f "/root/.ssh/id_rsa" 进入 cd /root/.ssh目录 (这里的root 是因 ...
- 查找MySql的配置文件my.cnf所在路径
Linux系统 linux 上可以使用 mysql --help|grep my.cnf 过滤查看 [root@localhost etc]# mysql --help|grep my.cnf ord ...
- 【LeetCode】Integer to English Words 解题报告
Integer to English Words [LeetCode] https://leetcode.com/problems/integer-to-english-words/ Total Ac ...