在我的电子表格中,我想跟踪有多少团队从这个website越过自动线。如果我使用:=IMPORTXML("https://www.thebluealliance.com/match/2018nysu_qm1","//table[2]//tr[1]/td[3]/span")
。
由于<span>
代码中没有任何内容,它无法正常工作:
<tr>
<td class="red" colspan="2"><span class="glyphicon glyphicon-remove"></span></td>
<td>Robot 1 Auto Run</td>
<td class="blue" colspan="2"><span class="glyphicon glyphicon-ok"></span></td>
</tr>
所以我希望它通过使用它来返回元素的类名:=IMPORTXML("https://www.thebluealliance.com/match/2018nysu_qm1","//table[2]//tr[1]/td[3]/span/@class")
。但它没有任何回报。我尝试在online tester上使用它,它返回了我正在寻找的类here is the screenshot。我只是想知道为什么它不能在谷歌表上工作,无论如何都要返回类的名称?
答案 0 :(得分:1)
你介意IMPORTHTML吗?:
=index(IMPORTHTML("https://www.thebluealliance.com/match/2018nysu_qm1","table"),0,3)