function AuthPasswd(string) {
        if(!string){
            jQuery("#low").removeClass("org");
        }else if(string && string.length >=6) {
            if(/[a-zA-Z]+/.test(string) && /[0-9]+/.test(string) && /\W+\D+/.test(string)) {
                noticeAssign(1);
            }else if(/[a-zA-Z]+/.test(string) || /[0-9]+/.test(string) || /\W+\D+/.test(string)) {
                if(/[a-zA-Z]+/.test(string) && /[0-9]+/.test(string)) {
                    noticeAssign(-1);
                }else if(/\[a-zA-Z]+/.test(string) && /\W+\D+/.test(string)) {
                    noticeAssign(-1);
                }else if(/[0-9]+/.test(string) && /\W+\D+/.test(string)) {
                    noticeAssign(-1);
                }else{
                    noticeAssign(0);
                }
            }
        }else{
            noticeAssign(0);
        }
    }

    function noticeAssign(num){        //num == 1强     -1中         0弱
        if(num == 1) {
            jQuery("#high").attr("class","org");
            jQuery("#mid").removeClass("org");
            jQuery("#low").removeClass("org");
        }else if(num == -1){
            jQuery("#high").removeClass("org");
            jQuery("#mid").attr("class","org");
            jQuery("#low").removeClass("org");
        }else if(num == 0) {
            jQuery("#low").attr("class","org");
            jQuery("#mid").removeClass("org");
            jQuery("#high").removeClass("org");
        }else{      //空值
            jQuery("#high").removeClass("org");
            jQuery("#mid").removeClass("org");
            jQuery("#low").removeClass("org");
        }
    }

 

相关文章:

  • 2022-02-11
  • 2021-12-03
  • 2021-09-27
  • 2022-12-23
  • 2022-02-11
  • 2021-08-19
  • 2021-09-23
猜你喜欢
  • 2022-12-23
  • 2022-03-07
  • 2021-10-03
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2021-09-02
相关资源
相似解决方案