gpt4 book ai didi

javascript - Spring 中的多种形式到单一操作,只需一个按钮

转载 作者:行者123 更新时间:2023-12-03 10:16:31 25 4
gpt4 key购买 nike

我有一个 jsp,其中有两个可用的 spring 表单。

<form:form modelAttribute="obj1" action="/some">
here i get the list of values and show then in dropdown.
</form:form>

<form:form modelAttribute="obj2" action="/some">
here i have some other things like table etc and **a submit button**.
</form:form>

obj1 和 obj2 都是模型对象,并通过两次数据库调用填充。

@RequestMapping("some")
public ModelAndView somemethod(){
return "modelandview";
}

现在,当按下提交按钮时,如何将下拉列表中选定的值检索到此 Controller 操作。现在,我可以从另一种形式(例如 obj2 形式)获取数据。也许,我不能在另一个表单选项中使用表单,但如果这只是选项,我将继续并重试。一个

最佳答案

为每个表单添加一个类并删除提交按钮,只需在表单后面添加一个输入:

<form:form class="formSubmit" modelAttribute="obj1" action="/some">
here i get the list of values and show then in dropdown.
</form:form>
<form:form class="formSubmit" modelAttribute="obj2" action="/some">
here i have some other things like table etc.
</form:form>
<input id="submit" type="button" value="Submit">

然后向提交按钮添加一个 jQuery 处理程序,该按钮将循环遍历每个表单并提交它

$('#submit').click(function() {
$('.formSubmit').each(function() {
$(this).submit();
});
});

关于javascript - Spring 中的多种形式到单一操作,只需一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29841274/

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