在struts中处理表单中的多个按钮
我在使用 struts 处理表单中的多个按钮时遇到问题。 我有三个按钮“添加”、“删除”和“转到”。我已将转发设置为隐藏,单击按钮时我会得到该按钮的名称。 问题是点击 go 按钮时我想调用 javascript,然后调用操作并返回到同一页面。
问题是我面临的问题是单击按钮时调用 javascript 并返回同一页面。请告诉我处理表单中的多个按钮及其操作的正确方法
I am facing an issue while handling multiple buttons in a form using struts.
I have three buttons add,delete and go .I have made forward as hidden and on click of a button i would get the name of the button.
The problem is with go button on click of that i want to call a javascript and then call the action and return to the same page .
Question is i am facing issue whicl calling javascript on click of a button and returning to the same page.Please tell me a proper way to handle multiple buttons in a form and its action
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以使用 javascript 调用来实现 onclick,并在 javascript 中执行真正的提交。
我所做的是:
javascript:
HTML / JSP / struts
希望能回答一些问题。
返回同一页面就是将表单提交到该页面,或者提交到另一个直接返回您的页面的控制器。
Well, you can implement onclick with a javascript call, and within the javascript do the real submit.
What I do is:
javascript:
HTML / JSP / struts
Hope that answers some of the question.
Getting back to the same page is to either having the form submit to that page, or submit to another controller which directs back to your page.