我有一个 HTML 表,如下所示:
<table class="reference notranslate">
<tr>..</tr>
.
.
<tr>..</tr>
</table>
<table class="reference notranslate">
<tr>..</tr>
.
.
<tr>..</tr>
</table>
<table class="reference notranslate">
<tr>..</tr>
.
.
<tr>..</tr>
</table>
我知道 XPATH:
//table[@class = 'reference notranslate'][2]/tr[2]
我想选择第二个表的第二行。任何人都可以帮助如何从相同的地方编写 CSS 选择器吗?
最佳答案
所以,你的意思是:
table.reference.notranslate:nth-child(2) tr:nth-child(2)
这将选择具有两个类(
tr
和 reference
)的第二个表的第二个后代元素 notranslate
。jsFiddle here。
关于html - 需要使用 CSS 选择器选择第二个表的第二行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17633959/