我想现实输入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>