我在我的应用程序中使用Struts。
我正在尝试使用javascript提交表单。因此我在html文件中执行了此操作:
<html:form name="returnForm" action="/returnMedia">
和<script>
标记:
document.forms["returnForm"].submit();
这通常是我们在使用javascript提交表单时所做的事情。
但是在struts 1.2中,我遇到了异常,要求我也为表单设置类型。
检查文档,似乎这不是在struts 1.2中提交表单的正确方法。
请告诉我如何处理此事。
谢谢,
答案 0 :(得分:3)
这个怎么样
{
document.forms[0].action = "UserAction.do?method=add"
document.forms[0].submit();
}
看看这个链接 http://www.dzone.com/tutorials/java/struts/struts-example/struts-dispatch-action-example-1.html