表单验证

来源:互联网 发布:拍电视剧编辑软件 编辑:程序博客网 时间:2024/04/25 20:40

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
function checktype()
{
 year=document.fm.year.value;
 email=document.fm.email.value;
 age=document.fm.age.value;
 if(year.length!=4||isNaN(year))
 {
  alert("年份不正确!");
  return false;
 }
 if(email.length==""||(email.indexOf('@')==-1)||(email.indexOf('.')==-1))
 {
  alert("电子邮件输入错误!");
  return false;
 }
 if(age.length!=2||isNaN(age)||parseInt(age)<20||parseInt(age)>50)
 {
  alert("你的年龄不符合我们的要求");
  return false;
 }
 return true;
}
</script>
</head>
 

原创粉丝点击