29

我正在使用 jQuery 数据表插件的表中有一个带有按钮的列。按钮说“删除”,想法是当您单击该按钮时,它会删除表中的当前行。

当我第一次打电话fnDeleteRow时,它似乎第一次工作,但该行没有更多时间,所以看起来它并没有真正正确地删除该行。

4

5 回答 5

61

尝试这个:

var row = $(this).closest("tr").get(0);
oTable.fnDeleteRow(oTable.fnGetPosition(row));

如果它不起作用,请检查以下示例

于 2009-12-18T05:44:35.670 回答
2

假设您附加了一个要在用户单击按钮时调用的函数。该功能将是这样的

function DeleteRow(event)
{
  //get the row of the cell that is clicked
  var $row = $(this).parents("tr").eq(0)
  //if you need the id you can get it as
  var rowid = $row.attr("id");
  //now you can call delete function on this row
  $row.delete(); 
}
于 2009-12-18T04:48:47.930 回答
1

这个怎么样:

    // Delete Row
    $('.glyphicon-minus').on("click", function() {
        configTable.row($(this).closest("tr").get(0)).remove().draw();
    });
于 2014-10-03T22:07:16.573 回答
0

这个页面

$('#example tbody td').click( function () {
    /* Get the position of the current data from the node */
    var aPos = oTable.fnGetPosition( this );

    //...
} );
于 2009-12-18T04:27:23.090 回答
0

这就是它对我的工作方式。在文档就绪函数中,我将转换后的 HTML 表版本分配给一个变量,当单击其中的按钮时,我使用 JQuery 遍历父/子,并将您获得的行作为参数发送到库的 fnDeleteRow() 函数。

这是库函数的注释。还有一个图书馆提到的例子。

/**
* Remove a row for the table
*  @param {mixed} target The index of the row from aoData to be deleted, or
*    the TR element you want to delete
*  @param {function|null} [callBack] Callback function
*  @param {bool} [redraw=true] Redraw the table or not
*  @returns {array} The row that was deleted
*  @dtopt API
*  @deprecated Since v1.10
*
*  @example
*    $(document).ready(function() {
*      var oTable = $('#example').dataTable();
*
*      // Immediately remove the first row
*      oTable.fnDeleteRow( 0 );
*    } );
*/

// And here's how it worked for me.
var oTable;
$("document").ready(function () {
    oTable = $("#myTable").dataTable();
});

//Remove/Delete button's click.
$("a[name='deleteColumn']").click(function () {
    var $row = $(this).parent().parent();
    oTable.fnDeleteRow($row);
});
于 2016-03-21T17:08:05.983 回答