我是靠谱客的博主 凶狠酒窝,最近开发中收集的这篇文章主要介绍JS 密码弱中强显示,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <meta charset="utf-8" />
    <script>
        onload = function () {
            var tds = document.getElementById('tb').getElementsByTagName('td');


            document.getElementById('txt').onkeyup = function () {
                for (var i = 0; i < tds.length; i++) {//防止输入正确密码后倒退删除时候出问题
                    tds[i].style.backgroundColor = 'gray';
                }
                if (this.value.length>0) {
                    var result = checkPwd(this.value);
                    if (result<=1) {//弱
                        tds[0].style.backgroundColor='red';
                    }else if (result==2) {//中
                        tds[0].style.backgroundColor='green';
                        tds[1].style.backgroundColor='green';
    
                    }else if (result==3) {//强
                        tds[0].style.backgroundColor='blue';
                        tds[1].style.backgroundColor='blue';
                        tds[2].style.backgroundColor='blue';
                    }
                }
            }
        }


        function checkPwd(msg){ //判断含有数字字母特殊符号
            var lvl = 0;
            if (msg.match(/[0-9]/)){
                lvl++;
            }
            if (msg.match(/[a-zA-Z]/)) {
                lvl++;
            }
            if (msg.match(/[^0-9a-zA-Z]/)) {
                lvl++;
            }
            if (msg.length<6) {
                lvl--;
            }
            return lvl;
        }

    </script>
</head>
<body>
    <input type="text" name="name" id="txt" />
    <table id="tb" border="1" style="width:300px;height:35px;text-align:center;background-color:gray">
        <tr>
            <td>
                弱
            </td>
            <td>
                中
            </td>
            <td>
                强
            </td>


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

转载于:https://www.cnblogs.com/dxmfans/p/9434852.html

最后

以上就是凶狠酒窝为你收集整理的JS 密码弱中强显示的全部内容,希望文章能够帮你解决JS 密码弱中强显示所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部