一下是我做的。。。个人看法。
写的不全。。
仅供参考。
<script language="vbscript">
sub button_onclick()
if len(form.f_user.value)=0 then
msgbox"用户名必须在6-18位!!",48
exit sub
end if
if len(form.f_mima.value)>18 or len(form.f_mima.value)<4 then
msgbox"安全起见,密码必须在4-18位!!",48
exit sub
end if
if len(form.f_age.value)>100 or len(form.f_age.value)<0 then
msgbox"年龄必须在0-100位!!",48
exit sub
end if
if instr(form.f_mail.value,"@")=0 and instr(form.f_mail.value,".")=0 then
msgbox"邮箱格式不正确!!",48
exit sub
end if
if len(form.f_num.value)=0 then
msgbox"邮编为必填项!!",48
exit sub
end if
if isnumeric(form.f_num.value)=0 then
msgbox"邮编不正确!!",48
exit sub
end if
form.submit
end sub
</script>