TR表中的jQuery干净文本

问题描述 投票:0回答:1

如何清除TR表中出现的所有文本?

这是我的表:

下面是我的脚本 - 我把文字放在TR中

$('#approve_do-table').delegate('tr', 'click', function() {

  var html;
  if ($('#approve_do-table #do-show tr').length === 1) {
    html = '<tr id="no-data"><th style="text-align:center;" class="table-conf even" colspan="5">No data found</th></tr>';
  }
  $('#approve_do-table > tbody').html(html);

  var $this = this;
  var id = $(this).attr('id'),
     latest_no = $(this).children('td:eq(0)').text(),
     part_name = $(this).children('td:eq(1)').text(),
     req       = $(this).children('td:eq(2)').text(),
     price     = $(this).children('td:eq(3)').text(),
     amount    = $(this).children('td:eq(4)').text(),
     part_id   = $(this).data('part_id');

  rows_selected.push(this);
  ids_selected.push(id);
  arrPartIds.push(part_id);

  loc = id.replace('part_do', '');
  loctab = $.inArray(id, ids_selected);
  locP = loctab+1;

  $('#part_doDest-table tr:eq('+locP+') td:eq(0)').html(latest_no);
  $('#part_doDest-table tr:eq('+locP+') td:eq(1)').html(part_name+'<i class="fa fa-times eks" aria-hidden="true" id="'+id+'"></i>');
  $('#part_doDest-table tr:eq('+locP+') td:eq(2)').attr({'contenteditable': false, 'id': 'edit'+loc, 'oninput': 'inputFunc("'+loc+'")','onblur':'removeTooltips("'+loc+'")', 'placeholder': '0'}).html(req);

  $('#part_doDest-table tr:eq('+locP+') td:eq(3)').attr('id', 'price'+loc).html(price);
  $('#part_doDest-table tr:eq('+locP+') td:eq(4)').attr('id','amount'+loc).html(amount);
  $(this).remove();
  sumSubtotal2();
});

这是我的脚本清除数组,但元素上的文本不清除。

$('.cancel_btn').click(function(event) {

  alert(1);
  ids_selected    = [];
  rows_selected   = [];

  $('#part_doDest-table').closest('tr').remove();
  $(this).closest('tr').remove();
});
javascript php jquery codeigniter html-table
1个回答
0
投票

我想设置空元素TR元素,如html(“”);

要“清空”一些表格行...不删除它们,你必须清空单元格(这是td)。

试试这个:

$('#approve_do-table tbody td').empty()
© www.soinside.com 2019 - 2024. All rights reserved.