代码并不复杂,只是其中的一些意思我不太明白,请高手们指点一下,小弟不胜感激,最好说的详细一点,代码如下:<html><head><title>old window</title><script language="javascript"><!--function nameselect(){if(isblank(" "+document.contest.last.value)){document.contest.last.value="surname"document.contest.last.focus()document.contest.last.select()}}function isblank(s){var len=s.lengthvar ifor(i=0;i<len;++i){if(s.charat(i)!=" ")return false}return true}function validate(fieldname,fieldvalue){if(isblank(fieldvalue)){alert(fieldname+" cannot be left blank.")return fale}return true}function validateemail(){validate("the e-mail field",document.contest.email.value)}function validatefrom(){if(!validate("the last namefield",document.contest.last.value))return falseif(!validate("the essay field",document.contest.essay.value)return false}// --></script></head><body><form name="contest" onsubmit="return validateform()"><h2 align="center">contest application</h2><p>last name:<input type="text" name="last" size="16"onchange="nameselect()">first name:<input type="text" name="first" size="12">middle initial:<input type="text" name="initial" size="2"></p><p>e=mail address:<input type="text" name="email" size="32"onchange="validateemail()"></p><p>in 50 words or less,state why you should win thecontest;</p><textarea name="essay" rows="5" cols="40"onchange="validateessay()"></textarea><p>submit your winning entry;<input type="submit" name="go" value="make me a winner!"></p></form></body></html>
參考答案:具体是哪句不懂?其实很简单啊,只是个写得很一般的表单验证程序而已,其技术核心是isblank函数,只是判断内容有没有空格.没意思.
建议使用 我佛山人做的那个 Validator 类.
validator是基于javascript技术的伪静态类和对象的自定义属性,可以对网页中的表单项输入进行相应的验证,允许同一页面中同时验证多个表单,熟悉接口之后也可以对特定的表单项甚至仅仅是某个字符串进行验证。因为是伪静态类,所以在调用时不需要实例化,直接以类名+.语法+属性或方法名来调用。此外,validator还提供3种不同的错误提示模式,以满足不同的需要。
validator目前可实现的验证类型有:
<javascript> 版
validator目前可实现的验证类型有:
1.是否为空;
2.中文字符;
3.双字节字符
4.英文;
5.数字;
6.整数;
7.实数;
8.email地址;
9.使用http协议的网址;10.电话号码;
11.货币;
12.手机号码;
13.邮政编码;
14.身份证号码(1.05增强);
15.qq号码;
16.日期;
17.符合安全规则的密码;
18.某项的重复值;
19.两数的关系比较;
20.判断输入值是否在(n, m)区间;
21.输入字符长度限制(可按字节比较);
22.对于具有相同名称的单选按钮的选中判断;
23.限制具有相同名称的多选按钮的选中数目;
24.自定义的正则表达式验证;
25.文件上传格式过滤(1.04)
运行环境(客户端):
在windows server 2003下用ie6.0+sp1和mozilla firefox 1.0测试通过;
在lunix redhat 9下的netscape测试通过;
对于客户端的表单验证,这个基于javascript编写的validator基本上都可以满足,具体可以下载chm文件validator.chm.
自己找一下吧