我有一个
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://表[@class =’reference notranslate’] [2] / tr [2]
我想选择第二个表的第二行.任何人都可以帮助如何编写CSS选择器吗?
解决方法
“I know the XPATH :
//table[@class = 'reference notranslate'][2]/tr[2]
I want to select second table’s second row. Can any one help how to
write the CSS selectors from the same?”
所以,你的意思是:
table.reference.notranslate:nth-child(2) tr:nth-child(2)
这将选择第二个表的第二个后代tr元素,它具有两个类(引用和非转换).