jQuery:如何选择表中每行的最后 N 列?

发布于 2024-11-04 01:26:22 字数 541 浏览 0 评论 0原文

我有一个有 6 列的表。我想在每行的最后 3 列(不包括标题行)上运行一个函数。我有以下正在运行的选择器:

$('table.listviewtable > tbody > tr:gt(0)').find('td:gt(2)')
    .each(function () { runMyFunction($(this)); });

有没有一种方法可以在一个选择器中完成这一切(即,没有中间 find)?

更新:

我已经尝试过

$('table.listviewtable > tbody > tr:gt(0) td:gt(2)')

$('table.listviewtable > tbody > tr:gt(0) > td:gt(2)')

但没有成功。他们返回了第 2 行的第 4、5 和 6 列以及所有后续行的所有列。

I have a table with 6 columns. I want to run a function on the last 3 columns of each row (excluding the header row). I have the following selector that is working:

$('table.listviewtable > tbody > tr:gt(0)').find('td:gt(2)')
    .each(function () { runMyFunction($(this)); });

Is there a way to do this all in one selector (ie, without the intermediate find)?

Update:

I've tried

$('table.listviewtable > tbody > tr:gt(0) td:gt(2)')

and

$('table.listviewtable > tbody > tr:gt(0) > td:gt(2)')

but they did not work. They returned the 4th, 5th, and 6th columns of the 2nd row and all columns of all subsequent rows.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

眼眸里的快感 2024-11-11 01:26:22

在这里:

$('table.listviewtable td:nth-child(n+4)')

现场演示: http://jsfiddle.net/simevidas/qJ3tP/1/< /a>

(我假设您使用 TH 元素作为标题单元格。)

Here you go:

$('table.listviewtable td:nth-child(n+4)')

Live demo: http://jsfiddle.net/simevidas/qJ3tP/1/

(I'm assuming you're using TH elements for the header cells.)

蛮可爱 2024-11-11 01:26:22

规则

获取 TR 的 X 个最后 TD 的通用规则是:

$('#tbl tr td:nth-last-child(-n+X)');

示例

// Example for the last 3 paragraphs in some section:
$('#my_section p:nth-last-child(-n+3)');

// It's exactly the same as:
$('#my_section p:nth-last-child(3-n)');

演示

<!-- CSS -->
<style>
  td {
    border: solid 1px #999;
    padding: 2px;
  }
</style>

<!-- HTML -->
<p>Last 3 cells made gray using jQuery</p>
<table>
  <tr>
    <td>One</td>
    <td>Two</td>
    <td>Three</td>
    <td>Four</td>
  </tr>
</table>

<!-- JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
  $(document).ready(function() {
    $('table tr td:nth-last-child(-n+3)').css('background', '#CCC');
  });
</script>

谢谢

http://css-tricks.com/useful-nth-child-recipies/< /a>

Rule

A generic rule to get the X last TD of a TR is:

$('#tbl tr td:nth-last-child(-n+X)');

Example

// Example for the last 3 paragraphs in some section:
$('#my_section p:nth-last-child(-n+3)');

// It's exactly the same as:
$('#my_section p:nth-last-child(3-n)');

Demo

<!-- CSS -->
<style>
  td {
    border: solid 1px #999;
    padding: 2px;
  }
</style>

<!-- HTML -->
<p>Last 3 cells made gray using jQuery</p>
<table>
  <tr>
    <td>One</td>
    <td>Two</td>
    <td>Three</td>
    <td>Four</td>
  </tr>
</table>

<!-- JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script>
  $(document).ready(function() {
    $('table tr td:nth-last-child(-n+3)').css('background', '#CCC');
  });
</script>

Thanks

http://css-tricks.com/useful-nth-child-recipies/

唱一曲作罢 2024-11-11 01:26:22
$('table.listviewtable > tbody > tr td:gt(2)')
$('table.listviewtable > tbody > tr td:gt(2)')
春风十里 2024-11-11 01:26:22

最简单、最明显的选择器是:

$('tr').each(
function(){
    $(this).find('td:gt(2)').css('background-color','#ffa');
});

JS Fiddle

编辑因为我是个白痴,忽略了第一个建议中的明显缺陷。顺便说一句,我假设正确的标记,使用 th 作为标题行。但是,您可以将选择器修改为:

 $('tbody tr')

要解决此问题,如果您不使用 th 元素。

The easiest, and most obvious selector, would be:

$('tr').each(
function(){
    $(this).find('td:gt(2)').css('background-color','#ffa');
});

JS Fiddle.

Edited because I'm an idiot, and overlooked the obvious flaw in the first suggestion. Incidentally, I'm assuming proper mark-up, using th for the heading rows. However you could amend the selector to:

 $('tbody tr')

To work around that, if you're not using th elements.

呆萌少年 2024-11-11 01:26:22

怎么样?

$('td:gt(2)', 'table.litviewtable')

当然,如果你在 header 中使用 th

how about

$('td:gt(2)', 'table.litviewtable')

of course if you use th in header.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文