jsp页面跳转问题

mxf2002 2009-03-27 08:40:54
点击提交时页面不跳转,如果action="teacher1.jsp"或者其他的jsp页面都可以跳转。我这里要获取radio的值,如果是管理员则跳转到administrators.jsp,如果是评价老师则跳转到teacher.jsp页面

<body>
<center>
<div align="center" class="STYLE1">
<h1> 欢迎来到毕业设计课题评价体系! </h1>
</div>
<form action="" name="myform" method="post"onsubmit="direction(this);">
<p>账号:<input name="username" type="text" size="10" maxlength="8"></p>
<p>密码:<input name="password" type="password" size="12" maxlength="10"></p>
<input type="radio" name="number" value="0" checked>管理员
<input type="radio" name="number" value="1"> 评价老师
<input type="radio" name="number" value="2"> 普通老师<br><br>
<input type="submit" value="登陆">
<input type="reset">
</form>
<script language="JavaScript">

function direction(myform){
if(myform.number[0].checked){
form.action="administrators.jsp";
}
if(myform.number[1].checked){
form.action="teacher1.jsp";
}
if(myform.number[2].checked){
form.action="teacher2.jsp";
}
}
</script>
</center>
</body>
...全文
72 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
jinchun1234 2009-03-27
  • 打赏
  • 举报
回复
你的form名称写错了。应该是myform
coolszy 2009-03-27
  • 打赏
  • 举报
回复
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<center>
<div align="center" class="STYLE1">
<h1> 欢迎来到毕业设计课题评价体系! </h1>
</div>
<form action="" name="myform" method="post" action="">
<p>账号: <input name="username" type="text" size="10" maxlength="8"> </p>
<p>密码: <input name="password" type="password" size="12" maxlength="10"> </p>
<input type="radio" name="number" value="0" checked>管理员
<input type="radio" name="number" value="1"> 评价老师
<input type="radio" name="number" value="2"> 普通老师 <br> <br>
<input type="submit" value="登陆" onclick="direction();">
<input type="reset">
</form>
<script language="JavaScript">

function direction(){
if(myform.number[0].checked){
myform.action="administrators.jsp"
myform.submit();
}
if(myform.number[1].checked){
myform.action="teacher1.jsp";
myform.submit();
}
if(myform.number[2].checked){
myform.action="teacher2.jsp";
myform.submit();
}
}
</script>
</center>
</body>
</body>
</html>

10,606

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 其他
社区管理员
  • 其他
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧