新微赢技术网
标题:
注册信息问题
[打印本页]
作者:
成熟之惑
时间:
2010-1-14 00:37
标题:
注册信息问题
<script language=javascript>
function check()
{
var username ,newpin, email, sex;
username=document.form1.username.value;
newpin=document.form1.newpine.value;
email=document.form1.email.value;
sex=document.form1.sex.checked;
len=username.length;
if(document.form1.username.value=="")
{
alert("用户名不能为空");
return false;
}
if((len<4)||(len>14))
{
alert("用户名长度不合法");
return false;
}
len1=newpin.length;
if(document.form1.newpin.value=="")
{
alert("密码不能为空");
return false;
}
if((len1 <4)||(len1 >14))
{
alert("用户名长度不合法");
return false;
}
if(document.form1.re_newpin.value=="")
{
alert("确认密码不能为空");
return false;
}
if((document.form1.newpin.value)!=(document.form1.re_newpin.value))
{
alert("密码不匹配");
return false;
}
if(document.form1.question.value=="")
{
alert("密码提示不能为空");
return false;
}
if(document.form1.answer.value=="")
{
alert("提示答案不能为空");
return false;
}
if(document.form1.email.value=="")
{
alert("email不能为空");
return false;
}
if((email.indexof("@")== -1)||(email.indexof(".")== -1))
{
alert("email格式不合法");
return false;
}
if(document.form1.name.value=="")
{
alert("真实姓名不能为空");
return false;
}
if(!w)
{
alert("性别不能为空");
return false;
}
if(document.form1.nian.value=="")
{
alert("出生日期年份不能为空");
return false;
} if(document.form1.yue.value=="")
{
alert("出生日期月份不能为空");
return false;
} if(document.form1.ri.value=="")
{
alert("出生日期不能为空");
return false;
} if(document.form1.zhengjian.value=="")
{
alert("证件不能为空");
return false;
} if(document.form1.zjhm.value=="")
{
alert("证件号码不能为空");
return false;
} if(document.form1.huiyuantype.value=="")
{
alert("会员类型不能为空");
return false;
}
return true;
}
</script>
这是一段判断注册信息表单中填写情况的判断,我加上后,点提交按钮,一下子就提交了,没经过判断,有什么问题?
作者:
兲外☆飛唬
时间:
2010-1-14 00:37
form里有加上onsubmit="return check()"
作者:
Kdsffsd
时间:
2010-1-14 00:38
加了啊不行
我又在 提交 按钮上加了onclick="return check();"
试试,还是不行
光这几句可以:
<script language=javascript>
function check()
{
if(document.form1.username.value=="")
{
alert("用户名为空");
return false;
}
if(document.form1.newpin.value=="")
{
alert("密码不能为空");
return false;
}
if((document.form1.newpin.value)!=(document.form1.re_newpin.value))
{
alert("密码不匹配");
return false;
}
if(document.form1.question.value=="")
{
alert("密码提示不能为空");
return false;
}
if(document.form1.answer.value=="")
{
alert("提示答案不能为空");
return false;
}
if(document.form1.email.value=="")
{
alert("email不能为空");
return false;
}
}
</script>
作者:
日-出
时间:
2010-1-14 00:38
那是因为你的按纽上没有选择无属性
你选择了提交属性
注意你的按纽属性
作者:
~~精灵小姐$
时间:
2010-1-14 00:38
谢谢,可以了,我有两个问题:
一,提交 按钮为什么要设为属性 无,而不是提交,它明明不是往数据库中提交数据吗?
二。系统提示:下面这点有误:
if((email.index0f("@")== -1)||(email.index0f(".")== -1))
{
alert("email格式不合法");
return false;
}
系统不支持此属性或方
为什么?
作者:
轻松由我
时间:
2010-1-14 00:38
用表单OnSubmit就可以了!
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2