用jquery识别表的第二行,第三列
如何识别表格的第二行第三列。 我希望这样的事情应该有效
var mySection = $('table tr:nth-child(2) td:nth-child(3)');
How can I identify second row, third column of a table.
I expect something like this should work
var mySection = $('table tr:nth-child(2) td:nth-child(3)');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
问题中发布的选择器对我有用。查看 jsfiddle。在该示例中,我将
mySection
文本设置为红色。The selector posted in the question works for me. Check out the jsfiddle. I have it coloring the
mySection
text red in that example.另一种方式,
another way,
如果将第二个参数传递给 jQuery(),这将指定上下文。
不过,仔细想想,它会产生与最初发布的结果相同的结果:
If you pass a second parameter to jQuery(), this will specify the context.
Though, come to think of it, it will create the same results as what was originally posted:
var mysection =$('#tableId tr:eq(2) td:eq(2)')
var mysection =$('#tableId tr:eq(2) td:eq(2)')