首页 > 语言 > JavaScript > 正文

javascript实现密码强度显示

2024-05-06 14:44:28
字体:
来源:转载
供稿:网友

密码强度显示和中文强弱显示

代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title>My JSP 'a.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">   
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
        <style type="text/css">
    * {margin:0px;padding:0px;}
    .J_PasswordStatus{padding-bottom:0px;height:18px;}
    .status-bar{margin:0px;display:inline-block;width:80px;height:5px;padding:1px;border:1px solid #42BF26;background-color:white;vertical-align:middle;font-size:0;}
    .status-bar span{background-color:#42BF26;height:5px;display:inline-block;}
    </style>
  </head>
  <body>
    <input type="password"  id="pwd1" style="float:left;margin-top:5px;" onkeyup="checkPassword();"/>
        <div id="p_PasswordStatus" class="J_PasswordStatus"
            style="display: none; width: 300px;">
            <span class="trigger">密码强度: </span>
            <span class="status-bar" style="text-indent: 0px;">
            <span style="line-height: 5px;">  </span>
            </span>
            <span class="status-result"></span>
        </div>
  </body>
</html>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
function checkPassword(){
    var pwd = $("#pwd1").val();
    gPasswdStatus(pwd,'p_PasswordStatus');
    }
function gPasswdStatus(value,id){
    var status = $("#"+id);
    var result = $("#"+id).find(".status-result")[0];
    var bar = $("#"+id).find(".status-bar span");
    if (value === "") {
        status.css("display","none");

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选