gpt4 book ai didi

java - 在 Struts 1.2 中使用 JavaScript 提交表单

转载 作者:行者123 更新时间:2023-11-29 05:48:30 25 4
gpt4 key购买 nike

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

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

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

这在 <script> 中标签:

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

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

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

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

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

谢谢,

最佳答案

这个怎么样

{
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

关于java - 在 Struts 1.2 中使用 JavaScript 提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14899934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com