我对 HTML 中的 TD 标记感到困惑,在 Input 标记中,我们有name
作为唯一 ID 来说明输入框的 ID,但是 TD 中的唯一 ID 替换name
属性是什么?因为当我更新我的表单时,所有来自 Input 标记的内容都已更新,但 TD 标记未更新,因为没有特定/唯一 ID 来发送数据。
我的代码如下:
输入标签
<input name="four" type="text" class="style6" value="<?php echo $row['four']; ?>" size="3">
TD 属性
<table>
<tr>
<td>
<center>
<?php echo $row['one'] = round($row['two'] / $row['three']); ?>
</center>
</td>
</tr>
</table>