如何删除一行?

时间:2017-03-01 05:15:22

标签: jquery

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Remove a specific table row using jQuery.</title>
</head>
<body>
<table id="mytable">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
  </tr>
  <tr id="r1">
    <td>Rahul</td>
    <td>Sethi</td>
  </tr>
  <tr id="r2">
    <td>Sara</td>
    <td>Rayy</td>
  </tr>
</table>

  <p> <input id="button1" type="button" value="Click to remove 2nd Row." /></p>
</body>
</html>

js:-
$(document).ready(function(){ 
  $('#button1').click(function(){ 
   $('#r2').remove(); 
   });
});

如果从列表中删除任何记录条目,则应该从条目列表中删除它,而不是隐藏它。如果我们从显示条目列表框中增加列表计数,则删除的条目也将出现在列表中。

0 个答案:

没有答案