如何删除表格的所有行但保留标题
我想删除表中除标题之外的所有行。
这是我尝试过的,但它总是删除所有行和标题:
$("#<%=tblDetailFourn.ClientID%> tbody tr").remove();
$("#<%=tblDetailFourn.ClientID%> tbody tr").not("thead tr").remove();
$("#<%=tblDetailFourn.ClientID%> tr").not("thead tr").remove();
$("#<%=tblDetailFourn.ClientID%> tbody").not("thead").remove();
$("#<%=tblDetailFourn.ClientID%> tbody").remove();
$("#<%=tblDetailFourn.ClientID%> > tbody").remove();
这是 html:
<table id="tblDetailFourn" runat="server" class="ProjetTable ProjetTableHover">
<thead>
<tr>
<th style="width:200px">Rôle de Ressource</th>
<th style="width:200px">Nom Prénom</th>
<th style="width:120px">Tel</th>
<th style="width:200px">Courriel</th>
<th style="width:80px">Actif</th>
<th style="width:33px"></th>
<th style="width:33px"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
I want to remove all rows of my table except the header.
This is what I've tried but it always deletes all rows and header:
$("#<%=tblDetailFourn.ClientID%> tbody tr").remove();
$("#<%=tblDetailFourn.ClientID%> tbody tr").not("thead tr").remove();
$("#<%=tblDetailFourn.ClientID%> tr").not("thead tr").remove();
$("#<%=tblDetailFourn.ClientID%> tbody").not("thead").remove();
$("#<%=tblDetailFourn.ClientID%> tbody").remove();
$("#<%=tblDetailFourn.ClientID%> > tbody").remove();
Here's the html:
<table id="tblDetailFourn" runat="server" class="ProjetTable ProjetTableHover">
<thead>
<tr>
<th style="width:200px">Rôle de Ressource</th>
<th style="width:200px">Nom Prénom</th>
<th style="width:120px">Tel</th>
<th style="width:200px">Courriel</th>
<th style="width:80px">Actif</th>
<th style="width:33px"></th>
<th style="width:33px"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
尝试使用这个:
Try using this:
尝试 http://api.jquery.com/child-selector/
你所拥有的应该有效尽管。
Try http://api.jquery.com/child-selector/
What you have should work though.
怎么样:
$('#tblDetailFourn tbody').html('');
jsfiddle
What about:
$('#tblDetailFourn tbody').html('');
jsfiddle
假设 tbody 中没有任何标题元素,这应该可以工作。
This should work, assuming that you don't have any header elements in tbody.
你试过这个吗?:
Have you tried this?:
根据您提供的 html,解决方案如下
这将完美地工作。
谢谢
Based on the html you provided the solution is following
This will work perfectly.
Thanks
如果你想删除所有tbody,包括标签,那么使用
它将删除tbody下的所有tr以及tbody。
if you want to delete all the tbody including the tag then use
it will remove all the tr under the tbody as well as tbody.