从A-z的判断
<html><head>
<title>这是一个提交试验</title>
<script language="javaScirpt">
function check(){
if((document.chform.text.value.length)=1)
{
return true
}
else
{
alert("不符合")
return false
}
}
</script>
</head>
<body>
<form name="chform" METHOD="post" action="aa.html" onSubmit="return check()">
<p>输入一个a到z之间的字母:
<input type="text" name="text" value="a" size="10"></p>
<input type="submit">
</form>
</body>
</html>