Como posso obter o cabeçalho da tabela correspondente (th) de uma célula da tabela (td)?

86

Dada a tabela a seguir, como obter o cabeçalho da tabela correspondente para cada elemento td?

<table>
    <thead> 
        <tr>
            <th id="name">Name</th>
            <th id="address">Address</th>
        </tr>
    </thead> 
    <tbody>
        <tr>
            <td>Bob</td>
            <td>1 High Street</td>
        </tr>
    </tbody>
</table>

Dado que atualmente já tenho algum dos tdelementos disponíveis para mim, como posso encontrar o thelemento correspondente ?

var $td = IveGotThisCovered();
var $th = GetTableHeader($td);
djdd87
fonte
2
Nenhuma das respostas leva em consideração a possibilidade de que o th possa ter um colspan maior que 1, que é o meu caso de uso :(
Dexygen
1
@GeorgeJempty Minha resposta trata de colspans.
doug65536

Respostas:

138
var $th = $td.closest('tbody').prev('thead').find('> tr > th:eq(' + $td.index() + ')');

Ou um pouco simplificado

var $th = $td.closest('table').find('th').eq($td.index());
user113716
fonte
2
se você está colocando mais tabelas em suas tabelas, use em .parent('table')vez de.closest('table')
Dead.Rabit
14
e colspans?
bradvido
@bradvido - Minha resposta leva isso em consideração
vsync
10
var $th = $("table thead tr th").eq($td.index())

Seria melhor usar um id para fazer referência à tabela se houver mais de um.

Adão
fonte
Mais de uma tabela pode estar na página, tornando esta solução não confiável
vsync
5

Solução que lida com colspan

Eu tenho uma solução baseada em combinar a borda esquerda do tdcom a borda esquerda do correspondente th. Deve lidar com colspans arbitrariamente complexos.

Modifiquei o caso de teste para mostrar que o arbitrário colspané tratado corretamente.

Demonstração ao vivo

JS

$(function($) {
  "use strict";

  // Only part of the demo, the thFromTd call does the work
  $(document).on('mouseover mouseout', 'td', function(event) {
    var td = $(event.target).closest('td'),
        th = thFromTd(td);
    th.parent().find('.highlight').removeClass('highlight');
    if (event.type === 'mouseover')
      th.addClass('highlight');
  });

  // Returns jquery object
  function thFromTd(td) {
    var ofs = td.offset().left,
        table = td.closest('table'),
        thead = table.children('thead').eq(0),
        positions = cacheThPositions(thead),
        matches = positions.filter(function(eldata) {
          return eldata.left <= ofs;
        }),
        match = matches[matches.length-1],
        matchEl = $(match.el);
    return matchEl;
  }

  // Caches the positions of the headers,
  // so we don't do a lot of expensive `.offset()` calls.
  function cacheThPositions(thead) {
    var data = thead.data('cached-pos'),
        allth;
    if (data)
      return data;
    allth = thead.children('tr').children('th');
    data = allth.map(function() {
      var th = $(this);
      return {
        el: this,
        left: th.offset().left
      };
    }).toArray();
    thead.data('cached-pos', data);
    return data;
  }
});

CSS

.highlight {
  background-color: #EEE;
}

HTML

<table>
    <thead> 
        <tr>
            <th colspan="3">Not header!</th>
            <th id="name" colspan="3">Name</th>
            <th id="address">Address</th>
            <th id="address">Other</th>
        </tr>
    </thead> 
    <tbody>
        <tr>
            <td colspan="2">X</td>
            <td>1</td>
            <td>Bob</td>
            <td>J</td>
            <td>Public</td>
            <td>1 High Street</td>
            <td colspan="2">Postfix</td>
        </tr>
    </tbody>
</table>
doug65536
fonte
Eu expandi o caso de teste para usar simultaneamente combinações arbitrárias de colspannos cabeçalhos e nas linhas, e ainda funcionou. Terei prazer em saber sobre qualquer caso que você possa encontrar que não funcione com isso.
doug65536
4

Você pode fazer isso usando o índice do td:

var tdIndex = $td.index() + 1;
var $th = $('#table tr').find('th:nth-child(' + tdIndex + ')');
rebelde
fonte
1
Lembre-se de que .index()é baseado em zero e nth-childé baseado em um. Portanto, o resultado seria errado em um. : o)
user113716
3

Solução de JavaScript puro:

var index = Array.prototype.indexOf.call(your_td.parentNode.children, your_td)
var corresponding_th = document.querySelector('#your_table_id th:nth-child(' + (index+1) + ')')
jeromej
fonte
1

Encontre correspondência thpara a td, levando em consideração os colspanproblemas de índice.

$('table').on('click', 'td', get_TH_by_TD)

function get_TH_by_TD(e){
   var idx = $(this).index(),
       th, th_colSpan = 0;

   for( var i=0; i < this.offsetParent.tHead.rows[0].cells.length; i++ ){
      th = this.offsetParent.tHead.rows[0].cells[i];
      th_colSpan += th.colSpan;
      if( th_colSpan >= (idx + this.colSpan) )
        break;
   }
   
   console.clear();
   console.log( th );
   return th;
}
table{ width:100%; }
th, td{ border:1px solid silver; padding:5px; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<p>Click a TD:</p>
<table>
    <thead> 
        <tr>
            <th colspan="2"></th>
            <th>Name</th>
            <th colspan="2">Address</th>
            <th colspan="2">Other</th>
        </tr>
    </thead> 
    <tbody>
        <tr>
            <td>X</td>
            <td>1</td>
            <td>Jon Snow</td>
            <td>12</td>
            <td>High Street</td>
            <td>Postfix</td>
            <td>Public</td>
        </tr>
    </tbody>
</table>

vsync
fonte
0

Isso é simples, se você os referenciar por índice. Se você deseja ocultar a primeira coluna, você deve:

Copiar código

$('#thetable tr').find('td:nth-child(1),th:nth-child(1)').toggle();

A razão pela qual primeiro selecionei todas as linhas da tabela e, em seguida, td's e th's que eram o enésimo filho, é para que não tivéssemos que selecionar a tabela e todas as linhas da tabela duas vezes. Isso melhora a velocidade de execução do script. Tenha em mente,nth-child() é 1baseado, não 0.

مهدی عابدی برنامه نویس و مشاور
fonte