为了账号安全,请及时绑定邮箱和手机立即绑定

创建空表并插入数据

创建空表并插入数据

PHP
30秒到达战场 2021-09-05 20:43:58
我想创建一个表来进行enter code here插入,update并且delete.这个想法是用表格替换表格,例如创建一个表格,只有标题和准备插入数据的空行,填充第一行或动态创建第二行或放置按钮添加行并返回写入内容和插入等等。我正在尝试这种方式,但因此我无法在列中写入然后进行插入:<table id="products-table">     <tbody>          <tr>                   <th>Produto</th>                   <th>Código</th>                <th>Quantidade</th>                <th>Preço</th>                 <th>Ações</th>           </tr>           <tr>                   <td>&nbsp;</td>                <td>&nbsp;</td>                <td>&nbsp;</td>                <td>&nbsp;</td>                <td>                     <button onclick="RemoveTableRow(this)" type="button">Remover</button>                  </td>            </tr>       </tbody>        <tfoot>          <tr>                  <td colspan="5" style="text-align: left;">                <button onclick="AddTableRow()" type="button">Adicionar Produto</button>                  </td>           </tr>       </tfoot>    </table>    <script>(function($) {    AddTableRow = function() {      var newRow = $("<tr>");     var cols = "";      cols += '<td>&nbsp;</td>';      cols += '<td>&nbsp;</td>';      cols += '<td>&nbsp;</td>';      cols += '<td>&nbsp;</td>';      cols += '<td>';      cols += '<button onclick="RemoveTableRow(this)" type="button">Remover</button>';    cols += '</td>';        newRow.append(cols);        $("#products-table").append(newRow);        return false;       };})(jQuery); </script> 但我质疑,创建一个表格来替换 html 中的表单是否有意义?
查看完整描述

2 回答

?
哈士奇WWW

TA贡献1799条经验 获得超6个赞

它确实有道理,我建议您查看DataTable,它使您能够使用适当的回调和所有方法处理此类用例。唯一的限制是您需要 jQuery。


查看完整回答
反对 回复 2021-09-05
  • 2 回答
  • 0 关注
  • 260 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信