我想知道实现这一目标的最佳方式或方法是什么。我有一个表格行,有两列作为输入。我需要将一个 ID 关联到输入元素,以便在提交表单时我可以识别输入属于哪一行。这就是我所拥有的。
<tr>
<td><input type="hidden" name="id[]" value="252748"> Tue - Mar 3rd 3:03 PM</td>
<td>
<select class="form-control" name="notes[]">
<option value="Parent Cancel" selected="">Parent Cancel</option>
<option value="COVID-19">COVID-19</option>
</select>
</td>
<td><input class="form-control" type="tel" name="hours[]" value="0"></td>
</tr>
<tr>
<td><input type="hidden" name="id[]" value="253081"> Wed - Mar 4th 2:03 PM</td>
<td>
<select class="form-control" name="notes[]">
<option value="Parent Cancel" selected="">Parent Cancel</option>
<option value="COVID-19">COVID-19</option>
</select>
</td>
<td><input class="form-control" type="tel" name="hours[]" value="0" readonly=""></td>
</tr>
如果我这样做并提交表单,我将得到 3 个数组:一个用于 id、notes 和 hours。我如何将 ID 与通讯员的注释和时间相关联。还是有更好的方法来做到这一点?
宝慕林4294392