js 암호 강 도 를 어떻게 검증 합 니까?

3332 단어 js암호 강도
'비밀번호 강도'를 검증 하 는 예 는 흔 하 다.우 리 는 새 계 정 을 등록 할 때 비밀 번 호 를 설정 하 는데,이때 비밀번호 강 도 를 검증 하 는 문제 에 부 딪 힌 다.'암호 강도
원리:
1.입력 한 비밀번호 가 단순 한 숫자 나 알파벳 이 라면'낮 음'을 알려 줍 니 다.
2.숫자 와 알파벳 이 섞 인 것 이 라면'중'을 제시 합 니 다. 
3.만약 에 숫자,자모,특수 문자 가 모두 있 으 면'강'을 제시 합 니 다.
다음은'비밀번호 강도'의 검증 방법 으로 재 미 있 습 니 다.
HTML 과 CSS 코드:

<!DOCTYPE HTML>
<html > <!-- lang="en" -->
<head>
 <meta charset="utf-8" />
 <title>    </title>
 <style type="text/css">
 
 #pwdStrength {
  height: 30px;
  width: 180px;
  border: 1px solid #ccc;
  padding: 2px;
  
 } 
 .strengthLv1 {
  background: red;
  height: 30px;
  width: 60px;
 }
 
 .strengthLv2 {
  background: orange;
  height: 30px;
  width: 120px;
 }
 
 .strengthLv3 {
  background: green;
  height: 30px;
  width: 180px;
 }
 #pwd {
  height:30px;
  font-size :20px;
 }
 strong {
  margin-left:90px;
 }
 #pwd1 {
  color:red;
  margin-top:5px;
  margin-bottom:5px;  
 }
 </style>
</head>
<body>
 <input type="password" name="pwd" id="pwd" maxlength="16" />
 <div class="pass-wrap">
 <!--<em>    :</em>-->
 <p id="pwd1" name="pwd">    :</p>
 <div id="pwdStrength"></div>
 </div>
</body>
</html>
javascript 코드:

<script type="text/javascript">
 function PasswordStrength(passwordID, strengthID) {
 this.init(strengthID);
 var _this = this;
 document.getElementById(passwordID).onkeyup = function () {//onkeyup   ,           ,    
  _this.checkStrength(this.value);
 }
 };
 PasswordStrength.prototype.init = function (strengthID) {
 var id = document.getElementById(strengthID);
 var div = document.createElement('div');
 var strong = document.createElement('strong');
 this.oStrength = id.appendChild(div);
 this.oStrengthTxt = id.parentNode.appendChild(strong);
 };
 PasswordStrength.prototype.checkStrength = function (val) { //         
 var aLvTxt = ['', ' ', ' ', ' '];//         
 var lv = 0; //         
 if (val.match(/[a-z]/g)) { lv++; } //        
 if (val.match(/[0-9]/g)) { lv++; } //         
 if (val.match(/(.[^a-z0-9])/g)) { lv++; } //        ,  ,  
 if (val.length < 6) { lv = 0; } //        6 ,      
 if (lv > 3) { lv = 3; } 
 this.oStrength.className = 'strengthLv' + lv;
 this.oStrengthTxt.innerHTML = aLvTxt[lv];
 };
new PasswordStrength('pwd','pwdStrength');
</script>
효과 그림:

소결:
1.onkeyup 이벤트(키보드 버튼 이 풀 렸 을 때 발생)를 이용 하여 세 가지 판단 을 하여 간단 하고 편리 합 니 다.
2.정규 표현 식 의 기능 은 정말 강하 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기