struts2 radio 标签的值传 到 JS

我想将一个JSP页面中的radio的值传到JS中,并将选中的值作为一个参数,传到一个链接中,但是,不知道为什么,一直报错。跪求各路大神帮忙。下面是代码:<%@pagela... 我想将一个JSP页面中的radio的值传到JS中,并将选中的值作为一个参数,传到一个链接中,但是,不知道为什么,一直报错。跪求各路大神帮忙。下面是代码:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<%@ taglib uri="/struts-tags" prefix="struts"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>登陆界面</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">

<script type="text/javascript">
function forgetpassword()
{
var a = document.getElementById("username").value;
if(a=="" || a==null)
{
alert("用户名不能为空");
}
else
{
var b = document.getElementById("type");
for(i=0;i<b.length;i++)
{
if(b[i].checked)
{
break
}
};
if(i==b.length)
{
alert("用户类型不能为空");
}
else
{
window.location.href="ForgetPassword!execute.action?username="+document.getElementById("username").value + "&type=" + b[i].value;
}
}
}

</script>

</head>

<body>

<struts:form action="Login">
<struts:label value="登陆系统"></struts:label>
<struts:textfield name="username" label="账号" id="username"/>
<struts:password name="password" label="密码" />
<struts:radio list="#{'student':'学生','teacher':'教师','manager':'管理员'}" name="type" id="type" ></struts:radio>
<struts:submit type="button" value="登陆"></struts:submit>
<struts:reset type="button" value="重置"></struts:reset>

</struts:form>
<a href="javascript:forgetpassword()" >忘记密码</a>

</body>
</html>
这里的问题,就是Javascript中的function forgetpassword() 里面,但是,我不知道为什么错,跪求各路大神帮忙。
展开
 我来答
话说你你你他5027
2011-08-22 · TA获得超过5.9万个赞
知道大有可为答主
回答量:2.5万
采纳率:0%
帮助的人:3340万
展开全部
var b = document.getElementById("type"); 获得的是一个元素
window.location.href="ForgetPassword!execute.action?username="+document.getElementById("username").value + "&type=" + b[i].value; 这你又用数组 肯定错了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式