主题:  哪位好心人帮我看看到底哪里错了?

jujishou

职务:普通成员
等级:1
金币:0.0
发贴:55
#12006/4/8 10:29:07
我想现实输入2或3位数字,怎么都实现不了,就差一点点了,不知道哪里错了
<html>
<head>
<script language="javascript">
<!--
function checkdata(){
if(document.form1.tt.value.length!=2 || document.form1.tt.value.length!=3)
{
window.alert("2或3位"
return false
}
return false
}//-->
</script>
</head>
<body>
<form name="form1" method="post" action="" onsubmit="return checkdata()">
<input name="tt" type="text" id="tt">
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>



【志奇林峰】

职务:普通成员
等级:1
金币:0.1
发贴:99
#22006/4/9 18:33:02
<html>
<head>
<script language="javascript">
function chea(){
     if((document.form1.box.value)<=10 || (document.form1.box.value)>=999)
     {window.alert("11111";}
     return false;
     }
</script>
</head>
<body>
<form name="form1" method="post" action="" onsubmit="return chea()">
<input name="box" type="text" id="box">
<input type="submit" name="Submit" value="提交">
</form>
</body>
</html>