javascript实现密码验证
本⽂为⼤家分享了javascript密码验证的实现⽅法,欢迎⼤家阅读。
javascript密码验证代码如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>密码验证</title>
<script src="js/jquery-1.11.1.js"></script>
<script>
$(function(){
$(document).on('blur','input',function(){
var $password=$('#password').val();
var $password_again=$('#password_again').val();
if(!$password){
$("#password").addClass('redBorder').next('label').show().html('不能为空');;
return false;
}else if(!$password_again){
$("#password_again").addClass('redBorder').next('label').show().html('不能为空');
return false;
}else{
$('input').removeClass('redBorder').next('label').empty();
if($password_again==$password){
$("#password,#password_again").next('label').show().html('两次密码⼀致').addClass('valid');
}else if($password_again!=$password){
$("#password,#password_again").addClass('redBorder').next('label').show().html('两次密码不⼀致').removeClass('valid').addClass('erro');      }
}
})
})
</script>
<style>
.redBorder{
border: 1px solid red;
}
.erro{
background: url('images/unchecked.gif') no-repeat;
padding-left: 16px;
}
.valid{
background: url('images/checked.gif') no-repeat;
width: 16px;
html怎么实现登录验证功能height: 16px;
}
</style>
</head>
<body>
<div>
<label>
输⼊密码:<input type="text" placeholder="输⼊密码" id="password">
<label id="password-erro" class="erro" ></label>
</label>
<br><br>
<label>
验证密码:<input type="text" placeholder="输⼊相同密码" id="password_again">
<label id="password-erro" class="erro" ></label>
</label>
<br><br>
<button >submit</button>
</div>
</body>
</html>
希望本⽂对⼤家学习javascript程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。