zoukankan      html  css  js  c++  java
  • 密码强度验证

    <!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>
    <title></title>
    <style type="text/css">
    td
    {
    80px;
    height: 25px;
    text-align: center;
    background-color: Gray;
    }
    </style>
    <script type="text/javascript">
    function setPwdColor(curPwd) {
    //1.判断用户的密码强度
    var level = getPwdQiangDu(curPwd.value);

    //1.2获取表格中的所有单元格
    var tds = document.getElementById('tb').getElementsByTagName('td');
    for (var i = 0; i < tds.length; i++) {
    tds[i].style.backgroundColor = 'gray';
    }

    if (curPwd.value != null && curPwd.value.length > 0) {
    //2.根据用户的密码的强度来设置表格的颜色。
    if (level <= 1) {
    tds[0].style.backgroundColor = 'red';
    } else if (level <= 2) {
    tds[0].style.backgroundColor = 'orange';
    tds[1].style.backgroundColor = 'orange';
    } else {
    tds[0].style.backgroundColor = 'green';
    tds[1].style.backgroundColor = 'green';
    tds[2].style.backgroundColor = 'green';
    }
    }
    }

    //判断用户的密码的强度级别
    function getPwdQiangDu(val) {
    var lvl = 0;
    //如果密码中包含数字则,强度+1
    if (val.match(/[0-9]/) != null) {
    lvl++;
    }
    //如果密码中包含字母,强度+1
    if (val.match(/[a-z]/i) != null) {
    lvl++;
    }
    //如果密码中包含非数字和字母的其他字符,则强度+1
    if (val.match(/[^a-z0-9]/i) != null) {
    lvl++;
    }

    //如果长度小于6则,强度-1
    if (val.length < 6) {
    lvl--;
    }

    return lvl;
    }
    </script>
    </head>
    <body>
    请输入密码:<input onkeyup="setPwdColor(this);" />
    <table id="tb" border="1" cellpadding="0" cellspacing="0">
    <tr>
    <td>

    </td>
    <td>

    </td>
    <td>

    </td>
    </tr>
    </table>
    </body>
    </html>

  • 相关阅读:
    sql中保留2位小数
    C# 操作字符串,在某些特定的字符后面或前面添加其它字符
    Windows Server 2008 R2中上传和下载文件
    winform中显示标题,点击打开链接
    正则表达式
    winform重绘
    js获取元素的页面坐标
    剑指offer-从上往下打印二叉树
    剑指offer-栈的压入、弹出序列
    剑指offer-包含min函数的栈
  • 原文地址:https://www.cnblogs.com/crazyair/p/3650502.html
Copyright © 2011-2022 走看看