php – 设置最小密码长度

我正在尝试为登录页面设置最小密码长度;但是,密码(输入)标签的唯一属性似乎是maxlength.我知道你可以使用新的模式或min属性,但我需要一些在IE 9中工作的东西.有没有一种简单/替代方法来解决这个问题,还是我必须使用strlen?

解决方法:

function CheckLength(name) {

            var password = document.getElementById(name).value;

            if (password.length < 4)

                alert('should have miniumum 4 chars');

        }
    </script>

</head>
<body>
    <form id="form1" runat="server">
    <input type="password" id="txtpassword" name="txtpassword" />
    <input type="submit" name="txtSubmit" onclick="CheckLength('txtpassword') " />
上一篇:采用C#sha512哈希并在php中进行比较


下一篇:javascript – 密码输入字段在焦点/类型上从文本更改为密码?