用jQuery删除表行的最佳方法是什么?
用jQuery删除表行的最佳方法是什么?
Answers:
你是对的:
$('#myTableRow').remove();
如果您的行中包含id
,则此方法很好用,例如:
<tr id="myTableRow"><td>blah</td></tr>
如果没有id
,则可以使用jQuery的大量选择器中的任何一个。
$('#myTable tr').click(function(){
$(this).remove();
return false;
});
更好的一个
$("#MyTable").on("click", "#DeleteButton", function() {
$(this).closest("tr").remove();
});
假设您的表中的数据单元内部有一个按钮/链接,那么类似的操作就可以解决问题。
$(".delete").live('click', function(event) {
$(this).parent().parent().remove();
});
这将删除被单击的按钮/链接的父级的父级。您需要使用parent()因为它是一个jQuery对象,而不是普通的DOM对象,并且您需要使用parent()两次,因为该按钮位于一个数据单元格中,该数据单元格位于一行中..您要删除的内容。$(this)是单击的按钮,因此简单地执行以下操作将仅删除按钮:
$(this).remove();
虽然这将删除数据单元格:
$(this).parent().remove();
如果您只想单击行上的任意位置以将其删除,则可以执行以下操作。您可以轻松地对此进行修改以提示用户或仅双击即可工作:
$(".delete").live('click', function(event) {
$(this).parent().remove();
});
希望能有所帮助...我自己为此感到挣扎。
是否可以接受以下内容:
$('#myTableRow').remove();
function removeRow(row) {
$(row).remove();
}
<tr onmousedown="removeRow(this)"><td>Foo</td></tr>
也许这样的事情也可以工作?我没有尝试使用“ this”做某事,所以我不知道它是否有效。
试试这个大小
$(this).parents('tr').first().remove();
完整清单:
<!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>
<script type="text/javascript">
$(document).ready(function() {
$('.deleteRowButton').click(DeleteRow);
});
function DeleteRow()
{
$(this).parents('tr').first().remove();
}
</script>
</head>
<body>
<table>
<tr><td>foo</td>
<td><a class="deleteRowButton">delete row</a></td></tr>
<tr><td>bar bar</td>
<td><a class="deleteRowButton">delete row</a></td></tr>
<tr><td>bazmati</td>
<td><a class="deleteRowButton">delete row</a></td></tr>
</table>
</body>
</html>
另一个empty()
:
$(this).closest('tr').empty();
如果您要删除的行可能会更改,则可以使用此行。只需将此函数传递到要删除的行#即可。
function removeMyRow(docRowCount){
$('table tr').eq(docRowCount).remove();
}
$('tr').click(function()
{
$(this).remove();
});
我想您会尝试上面的代码,因为它可以工作,但是我不知道为什么有时会工作,然后将整个表删除。我也试图通过单击该行来删除该行。但找不到确切答案。
如果您有这样的HTML
<tr>
<td><span class="spanUser" userid="123"></span></td>
<td><span class="spanUser" userid="123"></span></td>
</tr>
在哪里userid="123"
是自定义属性,您可以在构建表时动态填充该自定义属性,
您可以使用类似
$(".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,但是无论如何都可以将其删除。
我感谢这是一篇过时的文章,但我一直想这样做,但发现接受的答案对我不起作用。假设自编写以来,JQuery一直在发展。
无论如何,我发现以下对我有用:
$('#resultstbl tr[id=nameoftr]').remove();
不知道这是否对任何人有帮助。上面的示例是一个较大函数的一部分,因此未将其包装在事件侦听器中。
如果您使用的是Bootstrap表
将此代码段添加到bootstrap_table.js
BootstrapTable.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现在不是一个好的选择器。您可以在行上定义一些属性。您可以将它们用作选择器。
<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):
const rowRemover = (category,type)=>{
$(`tr[category=${category}][type=${type}]`).remove();
}
rowRemover('petshop','fish');
从表中删除行的最简单方法:
例如:
<table id='myTable' border='1'>
<tr id='tr1'><td>Row1</td></tr>
<tr id='tr2'><td>Row2</td></tr>
<tr id='tr3'><td>Row3</td></tr>
<tr id='tr4'><td>Row4</td></tr>
<tr id='tr5'><td>Row5</td></tr>
</table>
//======REMOVE TABLE ROW=========
//1. remove spesific row using its ID
$('#tr1').remove();
//2. remove spesific row using its order or index.
//row index started from 0-n. Row1 index is 0, Row2 index is 1 and so on.
$('#myTable').find('tr:eq(2)').remove();//removing Row3