如何从表格单元格(td)获取相应的表格标题(th)?


86

给定下表,我如何为每个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>

鉴于我目前已有任何td可用的元素,我如何找到对应的th元素?

var $td = IveGotThisCovered();
var $th = GetTableHeader($td);

2
没有一个答案考虑到th的colspan可能大于1的可能性,这是我的用例:(
Dexygen 2015年

1
@GeorgeJempty我的答案处理colspans。
doug65536 '16

Answers:


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

或稍微简化

var $th = $td.closest('table').find('th').eq($td.index());

2
如果你把更多的表中的表,请使用.parent('table')代替.closest('table')
Dead.Rabit

14
那colspans呢?
bradvido 2015年

@bradvido -我的回答需要一点考虑在内
VSYNC

10
var $th = $("table thead tr th").eq($td.index())

如果有多个表,最好使用id来引用表。


页面中可能有多个表,从而使该解决方案不可靠
vsync

5

处理的解决方案 colspan

我具有基于的左侧边缘相匹配的溶液td到相应的左边缘th。它应该处理任意复杂的colspans。

我修改了测试用例,以显示任意colspan处理正确。

现场演示

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>

我扩展了测试用例,以同时使用colspan标题和行中的任意组合,并且仍然有效。很高兴听到您发现任何无法解决此问题的案例。
doug65536 '16

4

您可以使用td的索引来做到这一点:

var tdIndex = $td.index() + 1;
var $th = $('#table tr').find('th:nth-child(' + tdIndex + ')');

1
请记住,它.index()是从零开始的,并且nth-child是从一开始的。因此结果将相差一倍。:o)
user113716 2010年

3

纯JavaScript的解决方案:

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) + ')')

1

找到匹配thtd,同时考虑到colspan指数的问题。

$('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>


0

如果您通过索引引用它们,那很简单。如果要隐藏第一列,则可以:

复制代码

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

我首先选择所有表行,然后选择第n个孩子的td和th的原因是,这样我们就不必选择表和所有表行两次。这样可以提高脚本执行速度。请记住,nth-child()不是1基于0

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.