<script language="javascript" type="">问题

哪位大侠能为小弟解决使用javascript验证非空以下是程序代码<html><scriptlanguage="javascript"type="">functionch... 哪位大侠能为小弟解决使用javascript验证非空
以下是程序代码
<html>
<script language="javascript" type="">
function check(){
var a = document.form1.loginname.value;
var b = document.form1.password.value;
var c = document.form1.truename.value;
var d1;
for(int i=0;i<3;i++){
if(document.form1.semester[i].checked){
d1 = document.form1.semester[i].value;
}
}

if(a==""||a==null){
alert("登陆名不能空!");
document.form1.loginname.focus();
return false;
}
else if(b==""||b==null){
alert("密码不能空!");
document.form1.password.focus();
return false;
}
else if(c==""||c==null){
alert("真实姓名不能空!");
document.form1.truename.focus();
return false;
}
else if(d==""||d==null){
alert("请选择学期!");
document.form1.semester.focus();
return false;
}else return true;

}
</script>
<body>
<center>
<h1><font color="red">用户注册</font></h1>
<form name="form1" action="studentlogin.jsp" method="POST" onsubmit="return check()">
<table align="center" border="1" style="border-color:red;border:solid">
<tr>
<td>登陆名:</td>
<td><input type="text" name="loginName" value=""/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password" value=""/></td>
</tr>
<tr>
<td>真实姓名:</td>
<td><input type="text" name="trueName" value=""/></td>
</tr>
<tr>
<td>选择学期:</td>
<td><input type="radio" name="semester" value="1"/>s1 <input type="radio" name="semester" value="2"/>s2 <input type="radio" name="semester" value="3"/>s3 </td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" value="提交" /><input type="reset" name="reset" value="重置" /></td>
</tr>
</table>
</form>
</center>
</body>
</html>
为何不能执行成功?请指教!
展开
 我来答
百度网友144133d
2008-04-24 · TA获得超过156个赞
知道小有建树答主
回答量:136
采纳率:0%
帮助的人:90.1万
展开全部
<html>
<script language="javascript" type="">
function check(){
var a = document.form1.loginName.value;
var b = document.form1.password.value;
var c = document.form1.trueName.value;
var d1;
for(var i=0;i<3;i++)
{
if(document.form1.semester[i].checked)
{
d1 = document.form1.semester[i].value;
}
}
if(a==""||a==null){
alert("登陆名不能空!");
document.form1.loginName.focus();
return false;
}
else if(b==""||b==null){
alert("密码不能空!");
document.form1.password.focus();
return false;
}
else if(c==""||c==null){
alert("真实姓名不能空!");
document.form1.trueName.focus();
return false;
}
else if(d1==""||d1==null){
alert("请选择学期!");
return false;
}
else
return true;

}
</script>
<body>
<center>
<h1><font color="red">用户注册</font></h1>
<form name="form1" action="studentlogin.jsp" method="POST" onsubmit="return check()">
<table align="center" border="1" style="border-color:red;border:solid">
<tr>
<td>登陆名:</td>
<td><input type="text" name="loginName" value=""/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password" value=""/></td>
</tr>
<tr>
<td>真实姓名:</td>
<td><input type="text" name="trueName" value=""/></td>
</tr>
<tr>
<td>选择学期:</td>
<td><input type="radio" name="semester" value="1"/>s1 <input type="radio" name="semester" value="2"/>s2 <input type="radio" name="semester" value="3"/>s3 </td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" value="提交" /><input type="reset" name="reset" value="重置" /></td>
</tr>
</table>
</form>
</center>
</body>
</html>
错误主要有一下几点:
1.严格区分大小写:oginName与oginname trueName与truename
2.for(int i=0;i<3;i++)中"int"应改为"var"
3.document.form1.semester.focus(); 这句应删掉
百度网友dbba86e
2008-04-23 · TA获得超过143个赞
知道答主
回答量:125
采纳率:0%
帮助的人:77万
展开全部
<html>
<script language="javascript" type="">
function check(){
var a = document.form1.loginName.value;
var b = document.form1.password.value;
var c = document.form1.trueName.value;
var d1;
var i;
for(i=0;i<3;i++){
if(document.form1.semester[i].checked){
d1 = document.form1.semester[i].value;
}
}

if(a==""||a==null){
alert("登陆名不能空!");
document.form1.loginName.focus();
return false;
}
else if(b==""||b==null){
alert("密码不能空!");
document.form1.password.focus();
return false;
}
else if(c==""||c==null){
alert("真实姓名不能空!");
document.form1.trueName.focus();
return false;
}
else if(d==""||d==null){
alert("请选择学期!");
document.form1.semester.focus();
return false;
}else return true;

}
</script>
<body>
<center>
<h1><font color="red">用户注册</font></h1>
<form name="form1" action="studentlogin.jsp" method="POST" onsubmit="return check()">
<table align="center" border="1" style="border-color:red;border:solid">
<tr>
<td>登陆名:</td>
<td><input type="text" name="loginName" value=""/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password" value=""/></td>
</tr>
<tr>
<td>真实姓名:</td>
<td><input type="text" name="trueName" value=""/></td>
</tr>
<tr>
<td>选择学期:</td>
<td><input type="radio" name="semester" value="1"/>s1 <input type="radio" name="semester"

value="2"/>s2 <input type="radio" name="semester" value="3"/>s3 </td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="submit" value="提交" /><input

type="reset" name="reset" value="重置" /></td>
</tr>
</table>
</form>
</center>
</body>
</html>

JS区分大小写,注意你 取元素名时的name值
JS定义变量用var i 不能int i
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式