struts2一个表单提交多个action
也就是一个表单用2个按钮,每个按钮提交各自的action。我用jacascrip还是没搞起,不知道是不是写错了。<fromname="login"method="post...
也就是一个表单用2个按钮,每个按钮提交各自的action。我用jacascrip还是没搞起,不知道是不是写错了。<from name="login" method="post"><input type="button" value="登陆" onclick="login"><input type="button" value="注册" onclick="registor"></from>function login()
{
login.action="<%=request.getContextPath()%>/loginForm/loginAction.action";
login.submit();
}
function registor()
{
login.action="<%=request.getContextPath()%>/loginForm/registorAction.action";
login.submit();
}这上面的代码写错了吗?该怎么写,我怎么都弄不起 展开
{
login.action="<%=request.getContextPath()%>/loginForm/loginAction.action";
login.submit();
}
function registor()
{
login.action="<%=request.getContextPath()%>/loginForm/registorAction.action";
login.submit();
}这上面的代码写错了吗?该怎么写,我怎么都弄不起 展开
2个回答
2013-08-16
展开全部
<from name="login" method="post" id="login"><input type="button" value="登陆" onclick="login()"><input type="button" value="注册" onclick="registor()"></from>function login()
{
document.getElementById("login").action="<%=request.getContextPath()%>/loginForm/loginAction.action";
document.getElementById("login").submit();
}
function registor()
{document.getElementById("login").action="<%=request.getContextPath()%>/loginForm/registorAction.action";
document.getElementById("login").submit();
}
{
document.getElementById("login").action="<%=request.getContextPath()%>/loginForm/loginAction.action";
document.getElementById("login").submit();
}
function registor()
{document.getElementById("login").action="<%=request.getContextPath()%>/loginForm/registorAction.action";
document.getElementById("login").submit();
}
2013-08-16
展开全部
function login()
{
document.form.login.action="<%=request.getContextPath()%>/loginForm/loginAction.action";
document.form.login.submit();
}用这样的试一试
{
document.form.login.action="<%=request.getContextPath()%>/loginForm/loginAction.action";
document.form.login.submit();
}用这样的试一试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询