jquery 选择表列
我正在努力选择特定表格的单元格。
某些单元格具有“testOff”类,如果该类存在,我尝试将表行更改为不同的颜色。
这是我到目前为止所拥有的:
$("table#customersTable td.testOff").each(function(){
$(this).closest("tr").css("background-color","#F6CCDA");
});
我一定错过了一些东西,因为它没有显示任何单元格的背景颜色。 有人发现我的选择方式有错误吗?
I am working on selecting a specific table's cells.
Some cells have a class of "testOff", and I'm attempting to change the table row to a different color, if the class exists.
here's what I have so far:
$("table#customersTable td.testOff").each(function(){
$(this).closest("tr").css("background-color","#F6CCDA");
});
I must be missing something, since it's not showing the background color for any of the cells.
Does anyone see an error with how I'm selecting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用如下内容:
CSS:
JS Fiddle demo。
顺便说一句:您不需要
each()
,因为选择器将返回并使用一个元素数组。参考文献:
each()
。closest()
。addClass()
。You could use something like:
CSS:
JS Fiddle demo.
Incidentally: you don't need the
each()
, as the selector will return, and work with, an array of elements already.References:
each()
.closest()
.addClass()
.您可以使用 :has 选择器:
You can use the :has selector:
工作演示
working demo
根据我之前的问题,以防万一您需要定位
td
单元格本身来覆盖以前的设置siblings()
正如我在评论中提到的,只会选择.testOff
两侧的单元格 - 这会找到所有其父级tr
的子级as per my earlier question, just in case it's the
td
cells themselves you need to target to override a previous settingsiblings()
as I also mentioned in my comments, would only select the cells on either side of the.testOff
- this finds all the children of it's parenttr