密码强度判断

如图

======================

==================HTML========================

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en">
<html>

<head>
<title> Reset password</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<link href="css/reset-password.css" type="text/css" rel="stylesheet" />
<script language="javascript" type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
</head>

<body>
<!--head-->
<div class="head">
<div class="header">
<h1 class="logo">
<a href="javascript:void(0);" class="logo-img"></a>
</h1>
<h2 class="logo-title">重置密码</h2>
<ul class="nav">
<li><a href="javascript:void(0);">注册</a></li>
<li><a href="javascript:void(0);">登录</a></li>
<li><a href="javascript:void(0);">安全退出</a></li>
</ul>
</div>

</div>
<!--head-->
<!--container-->
<div class="container">
<div class="content">
<p class="content-tip">
请输入您需要重置的密码
</p>
<div class="checksum-form">
<label class="checksum-label">输入新密码</label>
<input type="password" placeholder="请输入新密码" class="checksum-input" name="tbPassword" id="tbPassword" />
<div class="checksum-wrap">
<div class="strength-back" id=‘strengthLevel-1‘> </div>
<div class="strength-back" id=‘strengthLevel-2‘> </div>
<div class="strength-back" id=‘strengthLevel-3‘> </div>
<div class="strength-back-current"> 弱</div>
<div class="strength-back-current"> 中</div>
<div class="strength-back-current"> 强</div>
</div>
<label class="checksum-label">确认新密码</label>
<input type="password" placeholder="请再次输入新密码" class="checksum-input" name="RetbPassword" id="RetbPassword" />
<div id="system_msg" class="warn">密码输入不正确!</div>
<button type="submit" class="checksum-btn">确定</button>
</div>
</div>
<p class="copyright">
版权所有
</p>
</div>
<!--container-->

<script type="text/javascript">
$(‘#tbPassword‘).on("focus", function() {
$(‘#strengthLevel-1‘).addClass(‘strength-blur‘);
$(‘#tbPassword‘).keyup();
});
$(‘#tbPassword‘).keyup(function() {
var __th = $(this);
if (!__th.val()) {
Primary();
return;
}
if (__th.val().length < 6) {
Weak();
return;
}
var _r = checkPassword(__th);
if (_r < 1) {
Primary();
return;
}
if (_r > 0 && _r < 2) {
Weak();
} else if (_r >= 2 && _r < 4) {
Medium();
} else if (_r >= 4) {
Tough();
}
});

function Primary() {
$(‘#strengthLevel-1‘).attr(‘class‘, ‘strength-back‘);
$(‘#strengthLevel-2‘).attr(‘class‘, ‘strength-back‘);
$(‘#strengthLevel-3‘).attr(‘class‘, ‘strength-back‘);
}

function Weak() {
$(‘#strengthLevel-1‘).attr(‘class‘, ‘strength-blur‘);
$(‘#strengthLevel-2‘).attr(‘class‘, ‘strength-back‘);
$(‘#strengthLevel-3‘).attr(‘class‘, ‘strength-back‘);
}

function Medium() {
$(‘#strengthLevel-1‘).attr(‘class‘, ‘strength-blur‘);
$(‘#strengthLevel-2‘).attr(‘class‘, ‘strength-blur2‘);
$(‘#strengthLevel-3‘).attr(‘class‘, ‘strength-back‘);
}

function Tough() {
$(‘#strengthLevel-1‘).attr(‘class‘, ‘strength-blur‘);
$(‘#strengthLevel-2‘).attr(‘class‘, ‘strength-blur2‘);
$(‘#strengthLevel-3‘).attr(‘class‘, ‘strength-blur3‘);
}

function checkPassword(pwdinput) {
var maths, smalls, bigs, corps, cat, num;
var str = $(pwdinput).val()
var len = str.length;
var cat = /.{16}/g
if (len == 0) {
return 1;
}
if (len > 16) {
$(pwdinput).val(str.match(cat)[0]);
}
cat = /.*[\u4e00-\u9fa5]+.*$/
if (cat.test(str)) {
return -1;
}
cat = /\d/;
var maths = cat.test(str);
cat = /[a-z]/;
var smalls = cat.test(str);
cat = /[A-Z]/;
var bigs = cat.test(str);
var corps = corpses(pwdinput);
var num = maths + smalls + bigs + corps;
if (len < 6) {
return 1;
}
if (len >= 6 && len <= 8) {
if (num == 1) return 1;
if (num == 2 || num == 3) return 2;
if (num == 4) return 3;
}
if (len > 8 && len <= 11) {
if (num == 1) return 2;
if (num == 2) return 3;
if (num == 3) return 4;
if (num == 4) return 5;
}
if (len > 11) {
if (num == 1) return 3;
if (num == 2) return 4;
if (num > 2) return 5;
}
}

function corpses(pwdinput) {
var cat = /./g;
var str = $(pwdinput).val();
var sz = str.match(cat)
for (var i = 0; i < sz.length; i++) {
cat = /\d/;
maths_01 = cat.test(sz[i]);
cat = /[a-z]/;
smalls_01 = cat.test(sz[i]);
cat = /[A-Z]/;
bigs_01 = cat.test(sz[i]);
if (!maths_01 && !smalls_01 && !bigs_01) {
return true;
}
}
return false;
}

</script>

</body>

</html>

======CSS=============

@charset "utf-8";
/*css reset*/
ul {
list-style: none;
}
a {
text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
form {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
background: #fff;
font-size: 12px;
font-family: Microsoft YaHei ;
SimSun, Arial, Helvetica, sans-serif;
}
/*css reset*/

/*head*/

.head {
width: 100%;
height: 74px;
background-color: #fff;
border-bottom: 1px solid #e3e3e3;
}

.header {
width: 1000px;
height: 74px;
margin: 0 auto;
}

.header .logo {
float: left;
}

.logo .logo-img {
width: 275px;
height: 74px;
display: inline-block;
background: url(../images/guandu.png) no-repeat 0 10px;
}

.header .logo-title {
float: left;
display: inline-block;
width: auto;
height: 30px;
padding: 13px 0 0 15px;
line-height: 30px;
font-size: 24px;
color: gray;
border-left: 2px solid gray;
margin-top: 10px;
}

h2 {
font-weight: 500;
}

.header .nav {
width: auto;
height: 14px;
float: right;
line-height: 14px;
margin-top: 30px;
}

.header .nav li {
float: left;
padding: 0 15px 0 0;
margin-right: 15px;
border-right: 1px solid #4d4d4d;
}

.nav li a {
color: #4d4d4d;
font-size: 14px;
}

/*head*/

/*container*/

.container {
width: 100%;
height: 100%;
background-color: #f9f9f9;
border-top: 1px solid #fff;
}

.container .content {
width: 732px;
height: auto;
padding: 20px;
margin-bottom: 30px;
background-color: #fff;
border: 1px solid #e3e3e3;
border-radius: 2px;
box-shadow: 1px 1px 2px #f0f0f0;
margin: 20px auto;
}

.content .content-tip {
padding-bottom: 10px;
border-bottom: 1px solid #eee;
color: #4D4D4D;
vertical-align: middle;
line-height: 25px;
height: 20px;
font-size: 14px;
text-indent: 2em;
background: url(../images/icon-font.png) no-repeat;
}

.checksum-form {
margin: 20px auto 3px;
width: 80%;
text-align: center;
}

.checksum-form .checksum-label {
font-size: 16px;
margin-right: 10px;
color: #4d4d4d;
text-align: right;
width: 90px;
display: inline-block;
}

.checksum-form .checksum-input {
width: 190px;
padding: 8px 9px;
line-height: 18px;
border: 1px solid #e0e0e0;
}

.content .checksum-btn {
display: block;
width: 160px;
height: 50px;
line-height: 50px;
border: none;
overflow: hidden;
text-align: center;
background: #69b3f2;
font-size: 26px;
border-radius: 2px;
color: #FFF;
margin: 35px auto 50px 238px;
cursor: pointer;
}

.checksum-btn:hover {
background: #7cbdf5;
color: #FFFFFF;
}

.container .copyright {
color: #858585;
text-align: center;
margin-top: 100px;
}

.checksum-wrap {
width: 202px;
height: 25px;
margin: 5px auto 5px 238px;
}

.strength-back-current {
float: left;
width: 62px;
margin-left: 5px;
text-align: center;
color: #b0adad;
font-size: 12px;
}

.strength-back {
float: left;
background: #d6d3d3;
width: 62px;
height: 4px;
margin-top: 5px;
_margin-top: 0px;
margin-left: 5px;
_height: 2px;
font-size: 0px;
}

.strength-blur {
float: left;
background: #ff3300;
width: 62px;
height: 4px;
margin-top: 5px;
margin-left: 5px;
_margin-top: 0px;
_height: 2px;
font-size: 0px;
}

.strength-blur2 {
float: left;
background: #099;
width: 62px;
height: 4px;
margin-top: 5px;
margin-left: 5px;
_margin-top: 0px;
_height: 2px;
font-size: 0px;
}

.strength-blur3 {
float: left;
background: #060;
width: 62px;
height: 4px;
margin-top: 5px;
margin-left: 5px;
_margin-top: 0px;
_height: 2px;
font-size: 0px;
}
.checksum-form .warn{
margin-top: 10px;
color: red;
}
.content .tick{
width: 250px;
height: 40px;
line-height: 40px;
margin: 80px auto;
background: url(../images/tick.png) no-repeat 0 0;
text-indent: 2.5em;
}
/*container/

==========================

下载地址:

http://files.cnblogs.com/files/leshao/%E5%AF%86%E7%A0%81%E5%BC%BA%E5%BA%A6%E5%88%A4%E6%96%AD.rar

时间: 2024-11-12 23:55:36

密码强度判断的相关文章

简单的密码强度判断

一个简单的判断密码强度的小例子. 密码强度等级设定: 弱:纯字母或者纯数字组成 中:数字与字母混合组成 高:数字,字母,符号三者混合组成 这部分的js代码: $('#pass').keyup(function(e) { // 最强的正则表达式:8位 大小写字母 数字 符号 var strongRegex = new RegExp("^(?=.{8,})(?=.*[a-zA-Z])(?=.*[0-9])(?=.*\\W).*$", "g"); // 中等强度 : 7位

Js判断密码强度并显示提示信息

用javascipt实现的Ajax判断密码强弱的功能,大多数有用户注册功能的网站,都会有这么一个功能,作为WEB程序员,应该会写这种小模块哦,不懂的就看下这个例子,觉得挺简单,当初帮助了不少人学会了密码强度的检测. 表单部分,用来显示密码框和密码强度提示信息: <form name=form1 action="" > 请设置密码:<input type="password" size="10" onKeyUp="pwS

【课上OJ】判断密码强度

一个判断密码强度问题: 假设允许采用以下四类字符作为密码: (1)大写英文字母,(2)小写英文字母,(3)数字0-9,(4)特殊符号 @ - _ # ~ 对密码强度做以下规定: Best: 长度>=16,且包含以上四类字符,且每类至少有两个不同的字符 Strong: 不符合Best规定,但长度>=10,且包含以上四类字符 Medium: 不符合Best.Strong规定,但长度>=8,且包含以上至少三类字符 Weak:不符合Best.Strong.Medium规定. 现给你一个密码组合,

js判断密码强度

html代码: 1 <form name="form1" action=""> 2 密码:<input type="password" size="8" onkeyup="pwStrength(this.value)" onblur="pwStrength(this.value)"> 3 <br> 4 密码强度: 5 <table width=&

js动态判断密码强度

// 网上拷贝的代码,效果不太好需要自己调整<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta htt

Js判断密码强度代码

以前不知道密码强度是怎么搞的,今天看了一下网上写的,好像是这样的,就4个模式 数字,小写字母,大写字母,其他字符 只出现其中的一种为弱 出现其中2种为中 出现2种以上为高 1 /*每个字符对应的模式 => 1,2,4,8对应二进制*/ 2 function everycharmod(i){ 3 if(i >= 'a' && i <= 'z'){ 4 return 1; 5 }else if(i >= 'A' && i <= 'Z'){ 6 re

验证密码强度是否符合要求

密码强度要求: 1.密码长度至少为8个字符 2.至少要有一个大写英文或者小写字母 3.最少包含一个数字 备注:该方法也可以拆成4个if判断,可以针对不同的情况,对注册客户进行提示. 1 public static bool PasswordStrength(string password) 2 { 3 if (password.Length <8) 4 { 5 return false; 6 } 7 if (0 - Convert.ToInt32(Regex.IsMatch(password,

javascript 按位或(|),无符号右移(&gt;&gt;&gt;)运算,组合技巧来实现————密码强度提示,四种情况??

直接上代码,原来的代码中,switch中的第一个case,判断之后,少加了个break 跳出判断语句,害得我查了半天,“怎么样式老是不对,不科学啊,呵呵,原来是没跳出case的判断了,还会执行后面的判断!!,哎,嘿嘿,不过后来还是发现了,开心中...” 原文地址:http://www.cnblogs.com/wybztn/archive/2009/11/18/1605285.html 这里还有个重要的设计技巧, 0001, 0010, 0100, 1000各代表一种情况的话,组合起来就有很多种情

利用JavaScript来实现用动态检验密码强度

平时我们会在某些网站的注册页面或者更改密码的页面发现当我们输入密码时,会有一个类似于进度条的长条进行提示用户输入的密码强度.如下图: 我看到有些人用几张不同的图片来替换,这样似乎可以,但是不太好.所以我通过其他方式实现. 实质上这是根据用户输入的不同密码强度来改变 颜色区域的长度. 密码强度这个横条实质是一个div,其他标记也可以,div里面有一个span标记,我就是通过改变span的长度和颜色来表现密码的强度的.原理很简单,但是在操作过程中,可能会遇到一些问题很头疼. 1.先在html页面里面