What is the best way to remove a table row with jQuery?
使用jQuery删除表行的最佳方法是什么?
- 这里有关于如何删除表行的优秀文章codepedia.info/2015/02/remove-table-row-tr-in-jquery,即使是动态添加的行也是如此
你是对的:
1 | $('#myTableRow').remove(); |
如果您的行有
1 | <tr id="myTableRow"><td>blah</td></tr> |
如果你没有
- 是的,我假设行有一个ID,你有ID :)
- 这样做意味着每行需要一个id,这可能会增加很多开销。 jQuery允许其他更惯用的方法(对于jQuery的方法),继续阅读有更多的建议。
- 为我工作很棒,因为我能够在每一行中放置唯一的ID。
- 太棒了! JQuery是未来!
- "杰菲,什么是过多的?"
-
对于动态内容make row id
unique 你可以通过为php添加这样的独特内容来做到这一点,并且当你删除它时你必须生成这个id :)
1
2
3
4$('#myTable tr').click(function(){
$(this).remove();
return false;
});- 很好,非常非侵入性的
- 很奇怪,你的解决方案比公认的解决方案好得多。
- @jorg,就是提一下,你的答案中有一个拼写错误,在.click后你必须把函数()调回来
- 还有$(this).closest('tr')。remove();
假设你的表格中有一个数据单元格内的按钮/链接,这样就可以了...
1
2
3$(".delete").live('click', function(event) {
$(this).parent().parent().remove();
});这将删除单击的按钮/链接的父级的父级。你需要使用parent(),因为它是一个jQuery对象,而不是一个普通的DOM对象,你需要使用parent()两次,因为按钮位于一个数据单元内,它位于一行....这是你想要删除什么。 $(this)是点击的按钮,所以简单地使用这样的东西只会删除按钮:
1$(this).remove();虽然这将删除数据单元格:
1$(this).parent().remove();如果你只想点击行上的任何地方删除它,这样的东西就行了。您可以轻松修改此选项以提示用户或仅在双击时工作:
1
2
3$(".delete").live('click', function(event) {
$(this).parent().remove();
});希望有所帮助......我在这方面有点挣扎。
- 如果链接不是直接位于td内部,而是具有围绕它的跨度,该怎么办?我认为最好做$(this).parents('tr')。remove();让它自己走向DOM树,找到tr,然后删除它。
- 那也行得通。这完全取决于你的按钮/链接在DOM中的位置,这就是为什么我提供了这么多的例子和如此长的解释。
- 你也可以使用$(this).parents('tr')
- .live在jQuery 1.7中已弃用,并在1.9中删除。请参阅jQuery.live
- 这对我来说很好。 codepen.io/zx1986/pen/ammxrv
您可以使用:
1$($(this).closest("tr"))用于查找元素的父表行。
它比parent()。parent()更优雅,这是我开始做的事情,很快就学会了我的方式的错误。
- 编辑 -
有人指出,问题是关于删除行......1$($(this).closest("tr")).remove()如下所述,您可以简单地做到:
1$(this).closest('tr').remove();类似的代码片段可用于许多操作,例如在多个元素上触发事件。
-
更简洁:
$(this).closest("tr").remove()
容易..试试这个
1
2
3
4
5
6$("table td img.delete").click(function () {
$(this).parent().parent().parent().fadeTo(400, 0, function () {
$(this).remove();
});
return false;
});-
我会将
$(this).parent().parent().parent() 更改为$(this).closest('tr') 。它更强大,清晰地显示您正在选择的内容。
以下是可以接受的:
1$('#myTableRow').remove();- 是的它是可以接受的!
1
2
3
4
5function removeRow(row) {
$(row).remove();
}
<tr onmousedown="removeRow(this)"><td>Foo</td></tr>也许这样的事情也可以起作用?我没有尝试用"this"做某事,所以我不知道它是否有效。
- 好吧,我会说当你点击它时行会消失会有点奇怪。目前我在行中有一个链接删除该行。
您所要做的就是从表中删除表行(
)标记。例如,以下是从表中删除最后一行的代码: $('#myTable tr:last').remove(); *上面的代码来自这个jQuery Howto帖子。
尝试这个尺寸
1$(this).parents('tr').first().remove();完整上市:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js">
<script type="text/javascript">
$(document).ready(function() {
$('.deleteRowButton').click(DeleteRow);
});
function DeleteRow()
{
$(this).parents('tr').first().remove();
}
</head>
<body>
<table>
<tr><td>foo</td>
<td>delete row</td></tr>
<tr><td>bar bar</td>
<td>delete row</td></tr>
<tr><td>bazmati</td>
<td>delete row</td></tr>
</table>
</body>
</html>看到它在行动
另一个
empty() :1$(this).closest('tr').empty();-
这不是删除所有的
而不是 吗?我猜测浏览器可能会自动删除 ,但我怀疑不能保证。
如果要删除的行可能会更改,则可以使用此行。只需将此函数传递给您要删除的行#即可。
1
2
3function removeMyRow(docRowCount){
$('table tr').eq(docRowCount).remove();
}
如果您有这样的HTML
1
2
3
4<tr>
<td><span class="spanUser" userid="123"></span></td>
<td><span class="spanUser" userid="123"></span></td>
</tr>其中
userid="123" 是一个自定义属性,您可以在构建表时动态填充该属性,你可以用类似的东西
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19$(".spanUser").live("click", function () {
var span = $(this);
var userid = $(this).attr('userid');
var currentURL = window.location.protocol + '//' + window.location.host;
var url = currentURL +"/Account/DeleteUser/" + userid;
$.post(url, function (data) {
if (data) {
var tdTAG = span.parent(); // GET PARENT OF SPAN TAG
var trTAG = tdTAG.parent(); // GET PARENT OF TD TAG
trTAG.remove(); // DELETE TR TAG == DELETE AN ENTIRE TABLE ROW
} else {
alert('Sorry, there is some error.');
}
});
});因此,在这种情况下,您不知道
TR 标记的类或ID,但无论如何您都可以删除它。- 认为live现在已被弃用,有利于on,$("。spanUser")。on('click',function(){
1
2
3
4$('tr').click(function()
{
$(this).remove();
});我想你会尝试上面的代码,因为它工作,但我不知道为什么它工作了一段时间,然后整个表被删除。我也试图通过单击该行删除该行。但找不到确切的答案。
- 我不确定你是否已经尝试过$('tr')。live("click",function(){$(this).remove();});
我很欣赏这是一篇旧帖子,但我也希望这样做,并且发现接受的答案对我不起作用。假设JQuery已经开始了,因为这是写的。
无论如何,我发现以下内容对我有用:
1$('#resultstbl tr[id=nameoftr]').remove();不确定这是否有助于任何人。我上面的例子是一个更大的函数的一部分,所以没有将它包装在一个事件监听器中。
如果您使用的是Bootstrap Tables
将此代码段添加到bootstrap_table.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21BootstrapTable.prototype.removeRow = function (params) {
if (!params.hasOwnProperty('index')) {
return;
}
var len = this.options.data.length;
if ((params.index > len) || (params.index < 0)){
return;
}
this.options.data.splice(params.index, 1);
if (len === this.options.data.length) {
return;
}
this.initSearch();
this.initPagination();
this.initBody(true);
};然后在你的
var allowedMethods = [ 添加
'removeRow' 最后你可以使用
$("#your-table").bootstrapTable('removeRow',{index:1}); 这篇文章的致谢
id现在不是一个好的选择器。您可以在行上定义一些属性。你可以使用它们作为选择器。
1
2
3<tr category="petshop" type="fish"><td>little fish</td></tr>
<tr category="petshop" type="dog"><td>little dog</td></tr>
<tr category="toys" type="lego"><td>lego starwars</td></tr>你可以使用func来选择这样的行(ES6):
1
2
3
4
5const rowRemover = (category,type)=>{
$(`tr[category=${category}][type=${type}]`).remove();
}
rowRemover('petshop','fish');
Copyright © 码农家园 联系:[email protected]