博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
这篇文章主要为大家详细介绍了jQuery密码强度验证控件使用详解的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...
阅读量:4841 次
发布时间:2019-06-11

本文共 2620 字,大约阅读时间需要 8 分钟。

本文实例为大家分享了jQuery密码强度验证控件,供大家参考,具体内容如下

<
html
>
  
<
head
>
    
<
meta
http-equiv
=
"Content-Type"
content
=
"text/html; charset=UTF-8"
/>
    
<
script
type
=
"text/javascript"
src
=
"jquery-1.12.1.js"
></
script
>
    
<
style
type
=
"text/css"
>
      
.mainPrompt {
        
border: #999 solid 1px;
        
border-radius: 13px;
        
overflow: hidden;
        
padding: 1px 2px;
        
display: inline-block;
        
height: 20px;
      
}
      
.listPrompt {
        
float: left;
        
height: 20px;
        
width: 56px;
        
margin-right: 2px;
        
      
}
      
.bot_text span {
        
width: 52px;
        
text-align: center;
        
display: inline-block;
        
line-height: 18px;
      
}
    
</
style
>
  
</
head
>
  
<
body
>
    
<
br
/>
    
<
div
>
      
<
p
id
=
"PromptMessage"
style
=
"margin-left: 200px;"
>
          
新密码请至少使用字母、数字、符号两种<
br
/>类型组合的密码,长度为6~20位。</
p
>
      
<
input
type
=
"text"
id
=
"txtPassword"
style
=
"float: left;"
/
placeholder
=
"请输入密码"
>
      
<
div
style
=
"margin-left: 30px;font-size: 12px;float: left;"
>
        
<
div
class
=
"mainPrompt"
align
=
"center"
bgcolor
=
"#f5f5f5"
>
          
<
div
class
=
"listPrompt"
id
=
"strength_L"
style
=
"border-radius: 8px 0px 0px 8px;"
>
          
</
div
>
          
<
div
class
=
"listPrompt"
id
=
"strength_M"
>
          
</
div
>
          
<
div
class
=
"listPrompt"
id
=
"strength_H"
style
=
"margin-right: 0px;border-radius: 0 8px 8px 0;"
>
          
</
div
>
        
</
div
>
        
<
div
class
=
"bot_text"
>
          
<
span
id
=
"lowStrength"
>低</
span
> <
span
id
=
"midStrength"
>
            
中</
span
> <
span
id
=
"highStrength"
>高</
span
>
        
</
div
>
      
</
div
>
    
<
div
>
    
<
script
type
=
"text/javascript"
>
      
function JudgyPwdLevel(pwdStr) {
        
var hasNumber = 0;
        
var hasLetter = 0;
        
var hasSymbol = 0
        
if (pwdStr.length >= 6) {
          
for (var i = 0; i <
pwdStr.length
; i++) {
            
var
item
=
pwdStr
[i];
            
if (item >= '0' && item <= '9') { hasNumber = 1; }
            
else if ((item >= 'a' && item <= "z") || (item >= 'A' && item < "Z")) { hasLetter = 1; }
            
else { hasSymbol = 1; }
          
}
        
}
        
return hasLetter + hasNumber + hasSymbol;
      
}
      
//显示颜色
      
function pwStrength(pwd) {
        
O_color = "#eeeeee";
        
L_color = "#FF0000";
        
M_color = "#FF9900";
        
H_color = "#33CC00";
        
if (pwd == null || pwd == '') {
          
Lcolor = Mcolor = Hcolor = O_color;
        
}
        
else {
          
S_level = JudgyPwdLevel(pwd);
          
switch (S_level) {
            
case 0:
              
Lcolor = Mcolor = Hcolor = O_color;
            
case 1:
              
Lcolor = L_color;
              
Mcolor = Hcolor = O_color;
              
break;
            
case 2:
              
Lcolor = L_color;
              
Mcolor = M_color;
              
Hcolor = O_color;
              
break;
            
default:
              
Lcolor = L_color;
              
Mcolor = M_color;
              
Hcolor = H_color;
          
}
        
}
        
document.getElementById("strength_L").style.background = Lcolor;
        
document.getElementById("strength_M").style.background = Mcolor;
        
document.getElementById("strength_H").style.background = Hcolor;
        
return;
      
}
      
$("#txtPassword").keyup(function(e){
       
pwStrength($(e.target).val());
      
});
 
    
</
script
>
  
</
body
>
</
html
>

转载于:https://www.cnblogs.com/sjqq/p/6491236.html

你可能感兴趣的文章
unity 2d 和 NGUI layer
查看>>
Sublime Text shift+ctrl妙用、Sublime Text快捷组合键大全
查看>>
spring security中当前用户信息
查看>>
[中国寒龙出品]VB程序设计视频第十四课,更多请关注我们的官博。
查看>>
LinuxMint 17.1 Cinnamon桌面窗口焦点bug
查看>>
PHP函数
查看>>
缩点 CF893C Rumor
查看>>
Spring详解篇之 AOP面向切面编程
查看>>
COMP0037 Coursework
查看>>
Java第三次作业
查看>>
数据库的安装步骤
查看>>
关于一些基础的Java问题的解答(七)
查看>>
迭代器模式
查看>>
python写简单的图形界面汉诺塔解题器
查看>>
Wabacus框架
查看>>
安卓titlebar的组合控件使用
查看>>
MYSQL提权的各种姿势
查看>>
网页里如何使用js禁用F12事件
查看>>
Linux 指令
查看>>
头文件与类的区别是什么??
查看>>