1

我在我的应用程序中使用 Struts。

我正在尝试使用 javascript 提交表单。因此我在 html 文件中做了这个:

<html:form name="returnForm" action="/returnMedia">

这在<script>标签中:

document.forms["returnForm"].submit();

这通常是我们在使用 javascript 提交表单时所做的。

但是在 struts 1.2 中,我遇到了一个异常,要求我也设置表单的类型。

检查文档,这似乎不是在 struts 1.2 中提交表单的正确方法。

请让我知道如何进行此操作。

谢谢,

4

1 回答 1

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

于 2013-02-15T17:28:51.257 回答