假设您有一个通过 php 从 mysql 数据库生成的表,
例如,
<?php do { ?>
<tr>
<td><?php echo $row_sampleOA_set['concentration']; ?> </td>
</tr>
<?php } while ($row_sampleOA_set = mysql_fetch_assoc($sampleOA_set)); ?>
您将如何使用 contenteditable 属性使表格单元格可编辑并进行编辑以更新数据库?
在标签内只需插入 contentEditable = "true" 。现在您可以编辑表格了
创建一个按钮,onclick在js中执行一个函数,从表中检索数据并向php发送ajax请求。在 php 中使用 mysqli_query 更新表(update table set column = ...);