用jquery识别表的第二行,第三列

发布于 2024-12-21 18:58:46 字数 120 浏览 0 评论 0原文

如何识别表格的第二行第三列。 我希望这样的事情应该有效

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 技术交流群。

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

发布评论

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

评论(4

清晨说晚安 2024-12-28 18:58:46

问题中发布的选择器对我有用。查看 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.

玩物 2024-12-28 18:58:46

另一种方式,

$('table tr:eq(1) td:eq(2)');

another way,

$('table tr:eq(1) td:eq(2)');
忆悲凉 2024-12-28 18:58:46

如果将第二个参数传递给 jQuery(),这将指定上下文。

var my section = $('td:nth-child(3)', 'table tr:nth-child(2)')

不过,仔细想想,它会产生与最初发布的结果相同的结果:

var my section = $('table tr:nth-child(2) td:nth-child(3)')

If you pass a second parameter to jQuery(), this will specify the context.

var my section = $('td:nth-child(3)', 'table tr:nth-child(2)')

Though, come to think of it, it will create the same results as what was originally posted:

var my section = $('table tr:nth-child(2) td:nth-child(3)')
刘备忘录 2024-12-28 18:58:46

var mysection =$('#tableId tr:eq(2) td:eq(2)')

var mysection =$('#tableId tr:eq(2) td:eq(2)')

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