码迷,mamicode.com
首页 > 其他好文 > 详细

正则判断密码难度

时间:2019-11-02 13:36:48      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:function   this   lang   selector   value   cti   head   cas   ide   

  

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        span{
            display: none;
        }
    </style>
</head>
<body>
<input type="password" class="mm">
<span class="r">弱</span>
<span class="z">中</span>
<span class="q">强</span>

<script>
    var mm=document.querySelector(".mm");
    var sp=document.querySelectorAll("span")
    mm.onblur=function () {
        var flag=0;
        if(/[0-9]/.test(this.value)){
            flag++;
            console.log("数字")
        }
        if(/[a-zA-Z_]/.test(this.value)){
            flag++;
            console.log("字母")
        }
        if(/\W/.test(this.value)){
            flag++;
            console.log("特殊")
        }
        function hide(){
            for(var i=0;i<sp.length;i++){
                sp[i].style.display="none";
            }
        }
        switch (flag) {
            case 1:
                hide();
                document.querySelector(".r").style.display="block"
                break;
            case 2:
                hide();
                document.querySelector(".z").style.display="block"
                break;
            case 3:
                hide();
                document.querySelector(".q").style.display="block"
                break;
        }

    }
    function hide() {
        for (var i=0;i<sp.length;i++) {
            sp[i].style.display="none";
        }
    }
</script>
</body>
</html>

  

正则判断密码难度

标签:function   this   lang   selector   value   cti   head   cas   ide   

原文地址:https://www.cnblogs.com/daifuchao/p/11781250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!