js 限制最少输入字数
functioncheck_form(){if(document.login.u.value="<请输入帐号>"||document.login.u.value<5){d...
function check_form(){
if(document.login.u.value="<请输入帐号>"||document.login.u.value<5 ){
document.getElementById("cc_err").innerHTML="您还没有输入帐号";
return false;
}
if(document.login.password.value=""){
document.getElementById("cc_err").innerHTML="您还没有输入密码";
return false;
}
}
这段代码我想判断帐号的输入长度最少是5个字符
若不是5个字符则不通过 密码正确也不通过
若少于5个字符则不通过 不管密码框有没有内容 展开
if(document.login.u.value="<请输入帐号>"||document.login.u.value<5 ){
document.getElementById("cc_err").innerHTML="您还没有输入帐号";
return false;
}
if(document.login.password.value=""){
document.getElementById("cc_err").innerHTML="您还没有输入密码";
return false;
}
}
这段代码我想判断帐号的输入长度最少是5个字符
若不是5个字符则不通过 密码正确也不通过
若少于5个字符则不通过 不管密码框有没有内容 展开
展开全部
方法一:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JS限制输入字数</title>
<script type="text/javascript">
function isNotMax(oinput){
if( oinput.value.length >oinput.getAttribute("maxlength")){
return oinput.value.substring(0,oinut.getAttribute("maxlength"));
}else{
return oinput.value;
}
}
</script>
</head>
<body>
<h3>JS限制输入字数1</h3>
<input style="height:100px; width:600px; border:1px solid #333;"maxlength="10"></input>
</body>
</html>
方法二:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JS限制输入字数2</title>
</head>
<body>
<input type="text" size="70" maxlength="20" name="giftDescribe" onkeyup="javascript:checkWord(20)" onblur="javascript:hiddWordDiv()">
</body>
</html>
展开全部
将判断代码修改下:
if(document.login.u.value=="<请输入帐号>"||document.login.u.value.length<5 ){
document.getElementById("cc_err").innerHTML="您还没有输入帐号";
return false;
}
if(document.login.u.value=="<请输入帐号>"||document.login.u.value.length<5 ){
document.getElementById("cc_err").innerHTML="您还没有输入帐号";
return false;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function check_form() {
if (document.login.u.value = "<请输入帐号>" || document.login.u.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入帐号";
return false;
}else if(document.login.u.value.length<5){
ocument.getElementById("cc_err").innerHTML = "帐号不能少于5个字符";
return false;
}
if (document.login.password.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入密码";
return false;
}
}
if (document.login.u.value = "<请输入帐号>" || document.login.u.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入帐号";
return false;
}else if(document.login.u.value.length<5){
ocument.getElementById("cc_err").innerHTML = "帐号不能少于5个字符";
return false;
}
if (document.login.password.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入密码";
return false;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
function check_form() {
if (document.login.u.value = "<请输入帐号>" || document.login.u.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入帐号";
return false;
}else if(document.login.u.value.length<5){
ocument.getElementById("cc_err").innerHTML = "帐号不能少于5个字符";
return false;
}
if (document.login.password.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入密码";
return false;
}
}
if (document.login.u.value = "<请输入帐号>" || document.login.u.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入帐号";
return false;
}else if(document.login.u.value.length<5){
ocument.getElementById("cc_err").innerHTML = "帐号不能少于5个字符";
return false;
}
if (document.login.password.value = "") {
document.getElementById("cc_err").innerHTML = "您还没有输入密码";
return false;
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
document.login.u.value.length<5
你少了个length长度
你少了个length长度
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询