zoukankan      html  css  js  c++  java
  • js检测密码强度

    <script>
    function AuthPasswd(string) {
        if(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(null);
        }
    }
     
    function noticeAssign(num) {
        if(num == 1) {
            $('#weak').css({backgroundColor:'#009900'});
            $('#middle').css({backgroundColor:'#009900'});
            $('#strength').css({backgroundColor:'#009900'});
            $('#strength').html('很强');
            $('#middle').html('');
            $('#weak').html('');
        }else if(num == -1){
            $('#weak').css({backgroundColor:'#ffcc33'});
            $('#middle').css({backgroundColor:'#ffcc33'});
            $('#strength').css({backgroundColor:''});
            $('#weak').html('');
            $('#middle').html('中');
            $('#strength').html('');
        }else if(num ==0) {
            $('#weak').css({backgroundColor:'#dd0000'});
            $('#middle').css({backgroundColor:''});
            $('#strength').css({backgroundColor:''});
            $('#weak').html('弱');
            $('#middle').html('');
            $('#strength').html('');
        }else{
            $('#weak').html('&nbsp;');
            $('#middle').html('&nbsp;');
            $('#strength').html('&nbsp;');
            $('#weak').css({backgroundColor:''});
            $('#middle').css({backgroundColor:''});
            $('#strength').css({backgroundColor:''});
        }
    }
    </script>
  • 相关阅读:
    代理 XP”组件已作为此服务器安全配置的一部分被关闭。系统管理员可以使用 sp_configure 来启用“代理 XP”。
    sql 操作常用操作语句 新增、修改字段等
    easyui 日期控件清空值
    jQuery文件上传插件jQuery Upload File 有上传进度条
    js中文乱码怎么解决【转】
    [转]SqlSever2005 一千万条以上记录分页数据库优化经验总结【索引优化 + 代码优化】一周搞定
    SqlBulkCopy批量添加数据
    常用正则表达式
    查询每张表的大小
    Jquery里的特定小技巧
  • 原文地址:https://www.cnblogs.com/telwanggs/p/5306116.html
Copyright © 2011-2022 走看看