判断密码强度的Java script代码
Posted programfield
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断密码强度的Java script代码相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.lv0
width: 10px;
height: 5px;
background-color:white;
.lv1
width: 40px;
height: 5px;
background-color:red;
.lv2
width: 80px;
height: 5px;
background-color:orangered;
.lv3
width: 120px;
height: 5px;
background-color:green;
</style>
</head>
<body>
<input type="password" id="pwd">
<div id="lv">
<script>
var pwd = document.getElementById("pwd");
var lv = document.getElementById("lv");
pwd.onkeyup = function ()
var lvl = getPawLvl(this.value);
if(pwd.value.length<6)
;
else
if(1==lvl)
lv.className="lv1";
else if(2==lvl)
lv.className="lv2";
else if(3==lvl)
lv.className="lv3";
else
lv.className = "lv0";
function getPawLvl(password)
var lvl = 0;
if(/[0-9]/.test(password))
lvl++;
if(/[a-zA-Z_]/.test(password))
lvl++;
if(/[^0-9a-zA-Z_]/.test(password))
lvl++;
return lvl;
</script>
</body>
</html>
以上是关于判断密码强度的Java script代码的主要内容,如果未能解决你的问题,请参考以下文章
Python练习题9(密码判断):请写一个密码安全性检查的代码代码: 首先判断密码的强度,如果结果是低或中则打印如何提升密码安全级别的提示,而高则直接退出