jQuery实现表单验证功能
作者:赶不上明天 时间:2024-04-09 19:49:07
jQuery表单验证实例 / 包含用户名、密码、住址、邮箱验证
如下图
别忘了引入jQuery框架!!!
话不多说直接先上jQuery部分代码:
<script type="text/javascript">
$(document).ready(function(){
var tip1 = "<span class='span1'>用户名不能为空!</span>";//声明发生错误时在输入框后面添加的span
var tip2 = "<span class='span2'>邮箱格式错误或不能为空!</span>";
var tip3 = "<span class='span3'>地址不能为空!</span>";
var tip4 = "<span class='span4'>密码长度不能小于五位且最多为十位 !</span>";
var condition = /^([\.a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+/;//声明判定邮箱格式的条件
$(".id").blur(function(){
if(!$(".id").val()){//判定用户名非空
$(".span1").remove();
$(".id").after(tip1);
}
else{
$(".span1").remove();
}
});
$(".email").blur(function(){
if(!condition.test($(".email").val())){//判定邮箱格式
$(".span2").remove();
$(".email").after(tip2);
}
else{
$(".span2").remove();
}
});
$(".adress").blur(function(){
if(!$(".adress").val()){//判定地址非空
$(".span3").remove();
$(".adress").after(tip3);
}
else{
$(".span3").remove();
}
});
$(".pwd").blur(function(){
if($(".pwd").val().length < 5||$(".pwd").val().length >10){//判定密码长度不能小于5位且不能大于10位
$(".span4").remove();
$(".pwd").after(tip4);
}
else{
$(".span4").remove();
}
});
$(".button").click(function(){//符合所有条件则弹出弹窗表单验证通过,如果不符合则弹出弹窗提醒用户更改
if(!$(".id").val()||!condition.test($(".email").val())||!$(".adress").val()||$(".pwd").val().length < 5||$(".pwd").val().length >10){
alert("注册信息有误,请更改个人信息");
}
else{
alert("注册成功");
}
})
})
</script>
结构和样式:
<div class="main_box">
<div class="title">
欢迎注册原魔
</div>
<div class="box">
<img alt="插图" src="./img/可莉派萌.png" class="img">
<form>
用户名:<input class="id" type="text" ><br>
邮 箱:<input class="email" type="text"><br>
地 址:<input class="adress" type="text"><br>
密 码:<input class="pwd" type="password"><br>
<button type = "button" class="button">注   册</button>
</form>
</div>
</div>
span{
color:white;
}
body{
font-family: sans-serif;
}
.main_box{
width: 100%;
height: 910px;
background-color: red;
background-image: linear-gradient(#e66465, #000000);
}
.title{
font-size: 5em;
color: white;
width:100%;
height: 100px;
text-align: center;
}
.box{
width: 1050px;
height: 310px;
margin: 150px auto 50px auto;
padding-left: 360px;
}
input{
height: 40px;
width: 200px;
border-radius: 20px;
border: solid 1px #B5B5B5;
margin: 10px;
font-size: 1.2em;
}
form{
color:white;
font-size:1.2em;
float: left;
margin-left: 50px;
}
.button{
width: 280px;
height: 40px;
background-color: #9781FD;
border-radius: 25px;
color:white;
font-size: 1.3em;
font-weight: 700;
margin-top: 10px;
}
.img{
width:310px;
height: 310px;
float: left;
}
来源:https://blog.csdn.net/qq_46686675/article/details/120874191
标签:jQuery,表单验证
0
投稿
猜你喜欢
Python turtle库绘制菱形的3种方式小结
2022-04-10 14:08:19
python应用Axes3D绘图(批量梯度下降算法)
2023-04-19 11:41:45
mysql-8.0.15-winx64 解压版安装教程及退出的三种方式
2024-01-23 21:56:20
anaconda navigator打不开问题的解决方法
2023-09-12 08:48:20
python爬取招聘要求等信息实例
2021-01-27 21:22:36
在Golang中使用C语言代码实例
2024-05-25 15:15:46
学习ASP的理由 分析小结
2011-02-26 10:54:00
Python基于TensorFlow接口实现深度学习神经网络回归
2022-07-17 22:38:28
sql server2005实现数据库读写分离介绍
2024-01-13 20:46:55
PyCharm常用配置和常用插件(小结)
2023-07-21 03:21:17
Python3爬虫学习之爬虫利器Beautiful Soup用法分析
2021-04-13 07:01:50
javascript在事件监听方面的兼容性小结
2024-04-29 13:45:19
Python 人工智能老照片修复算法学习
2022-10-31 03:37:18
查询mysql中执行效率低的sql语句的方法
2024-01-24 09:58:36
Effective Python bytes 与 str 的区别
2021-07-11 16:52:13
精简化的产品设计
2008-07-26 12:22:00
详解Python中for循环的使用
2023-06-13 13:55:40
Python 中Operator模块的使用
2021-04-02 05:30:34
python webp图片格式转化的方法
2021-09-03 16:27:44
Python常问的100个面试问题汇总(下篇)
2023-09-23 06:30:29