DOM案例密码强度检查案例

Posted 东京八十万萝莉总教头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DOM案例密码强度检查案例相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
    <title>注册页面</title>
    <style type="text/css">

        #table td{
            width:40px;
            height:19px;
            background-color:#F3F3F3;
            border:1px solid #D0D0D0;
            color:#BBBBBB;
            line-height:9px;
        }

    </style>
</head>
<body>
    <form>

        <label for="password">密码:</label>
        <input id="password" type="password" name="password" />
        <table id="table" border="0" cellpadding="0" cellspacing="0" style="display: inline-table;">
          <tr align="center">
            <td id="td1"></td>
            <td id="td2"></td>
            <td id="td3"></td>
          </tr>
        </table>

    </form>
</body>
</html>
<script type="text/javascript">

    /*
    密码强度规则:
    弱:强度为1,密码长度小于6个就是弱
    中:强度为2,除了弱和强之外都属于中
    强:强度为3,密码长度大于或者等于8个,并且包含数字、小写字母和大写字母
     */

    //什么时候检查密码的强度

    //声明一个函数专门检查密码的强度
    function checkPassword(value){
        if(!value){
            return 1;
        }
        if(value.length<6){
            return 1;
        }
        if(value.length>=8 && value.match(/[0-9]/) && value.match(/[a-z]/) && value.match(/[A-Z]/) ){
            return 3;
        }

        return 2;
    }

    //1 创建一个定时器,每个100毫秒检查一下密码的强度
    setInterval(function(){
        var passwordElement = document.getElementById("password");

        var passwordLevel = checkPassword(passwordElement.value);

        //2 如果检查结果是弱,就改变弱单元格的背景色...
        switch (passwordLevel){
            case 1:{
                document.getElementById("td1").style.backgroundColor="#ff8040";
                document.getElementById("td2").style.backgroundColor=null;
                document.getElementById("td3").style.backgroundColor=null;
                break;
            }
            case 2:{
                document.getElementById("td1").style.backgroundColor="#ffff6f";
                document.getElementById("td2").style.backgroundColor="#ffff6f";
                document.getElementById("td3").style.backgroundColor=null;
                break;
            }
            case 3:{
                document.getElementById("td1").style.backgroundColor="#a8ff24";
                document.getElementById("td2").style.backgroundColor="#a8ff24";
                document.getElementById("td3").style.backgroundColor="#a8ff24";
                break;
            }
        }

    },100);

</script>

 

以上是关于DOM案例密码强度检查案例的主要内容,如果未能解决你的问题,请参考以下文章

Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段

JavaScript 操作元素案例练习

ESP 保姆级教程 疯狂传感器篇 —— 案例:ESP8266 + BH1750 + 串口输出(检测光照强度)

Python练习题9(密码判断):请写一个密码安全性检查的代码代码: 首先判断密码的强度,如果结果是低或中则打印如何提升密码安全级别的提示,而高则直接退出

案例高仿百度注册页

前端案例:飞机大战( js+dom 操作,代码完整)