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个字符则不通过 不管密码框有没有内容
展开
 我来答
198901245631
2015-11-08 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1739万
展开全部

方法一:

<!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>
fantasy_wl
2012-11-28 · TA获得超过904个赞
知道小有建树答主
回答量:1287
采纳率:100%
帮助的人:1356万
展开全部
将判断代码修改下:
if(document.login.u.value=="<请输入帐号>"||document.login.u.value.length<5 ){
document.getElementById("cc_err").innerHTML="您还没有输入帐号";
return false;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
郭某人来此
2015-10-04 · TA获得超过1646个赞
知道答主
回答量:952
采纳率:100%
帮助的人:90.3万
展开全部
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;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2cbd3ce
2012-11-28 · TA获得超过241个赞
知道小有建树答主
回答量:447
采纳率:75%
帮助的人:291万
展开全部
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;
}
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tatooo
2012-11-28 · TA获得超过2119个赞
知道小有建树答主
回答量:2497
采纳率:46%
帮助的人:679万
展开全部
document.login.u.value.length<5
你少了个length长度
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式