如何使用 jQuery 从表中删除行?


使用事件委托在网页上用 jQuery 添加按钮,既能添加新行又能删除表格行。

首先,设置“删除”按钮

<button type="button" class="deletebtn" title="Remove row">X</button>

要出发在按钮单击事件,使用 jQuery on() 方法

$(document).on('click', 'button.deletebtn', function () {
   $(this).closest('tr').remove();
   return false;
});

以下为使用 jQuery 从表中删除行的完整代码

示例

 在线演示

<!DOCTYPE html>
<html>
<head>
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
   <script>
   $(document).ready(function(){
      var x = 1;
      $("#newbtn").click(function () {
         $("table tr:first").clone().find("input").each(function () {
            $(this).val('').attr({
               'id': function (_, id) {
                     return id + x
               },
               'name': function (_, name) {
                  return name + x
               },
               'value': ''
         });
      }).end().appendTo("table");
      x++;
   });

   $(document).on('click', 'button.deletebtn', function () {
      $(this).closest('tr').remove();
      return false;
   });
});
</script>
</head>
<body>
<table>
<tr>
<td>
<button type="button" class="deletebtn" title="Remove row">X</button>
</td>
<td>
<input type="text" id="txtTitle" name="txtTitle">
</td>
<td>
<input type="text" id="txtLink" name="txtLink">
</td>
</tr>
</table>
<button id="newbtn">Add new Row</button>
</body>
</html>

更新日期:2020 年 6 月 20 日

2K+ 次浏览

开启您的 职业生涯

通过完成课程获取认证资格

开始
广告