jQuery:如何选择表中每行的最后 N 列?
我有一个有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在这里:
现场演示: http://jsfiddle.net/simevidas/qJ3tP/1/< /a>
(我假设您使用 TH 元素作为标题单元格。)
Here you go:
Live demo: http://jsfiddle.net/simevidas/qJ3tP/1/
(I'm assuming you're using TH elements for the header cells.)
规则
获取 TR 的 X 个最后 TD 的通用规则是:
示例
演示
谢谢
http://css-tricks.com/useful-nth-child-recipies/< /a>
Rule
A generic rule to get the X last TD of a TR is:
Example
Demo
Thanks
http://css-tricks.com/useful-nth-child-recipies/
最简单、最明显的选择器是:
JS Fiddle。
编辑因为我是个白痴,忽略了第一个建议中的明显缺陷。顺便说一句,我假设正确的标记,使用
th
作为标题行。但是,您可以将选择器修改为:要解决此问题,如果您不使用
th
元素。The easiest, and most obvious selector, would be:
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:To work around that, if you're not using
th
elements.怎么样?
当然,如果你在 header 中使用 th
how about
of course if you use th in header.