gpt4 book ai didi

html - 在单个表中包含多个表单的正确方法

转载 作者:行者123 更新时间:2023-11-28 04:26:01 24 4
gpt4 key购买 nike

有没有一种正确的方法可以在一个表中包含多个表单?

比如我有8行,其中4行对应一个表,另外4行对应一个表。最好的方法是什么?我知道在 TR 之间放置表格是无效的。

最佳答案

我想我找到了解决您问题的方法,因为我发现自己处于同样的情况。这是我所做的一个例子。

<form id="uno" name="uno" action="somescript.php" method="post">
<input type="hidden" id="myhidden" value="1">
</form>
<form id="dos" name="dos" action="anotherscript.php" method="post">
<input type="hidden" id="myhidden" value="2">
</form>

<table id="uniqueTable">
<tr>
<td><input form="uno" type="text" id="x_value" name="x_value" value="0.00"></td>
<td><input form="dos" type="text" id="x_anothervalue" name="x_anothervalue" value="0.00"></td>
</tr>
</table>

这样,虽然只有一张表,但您的每个输入都属于 form="formName"

声明的表单

希望对大家有帮助- 阿纳金

关于html - 在单个表中包含多个表单的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4168439/

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