我是新手,Jsoup
搜索了很长时间都找不到解决方案。我有一个表,其中最后tr
有一个带有空格的类名。
<table class="table_one">
<tr class="no_background ">
<td>
<b> Text comes here</b>
</td>
<td> and here... </td>
</tr></table>
现在,我想访问文本。当我说
Select("table[class=tag_std] tr[class=bgnd_1 ]")
它返回empty
列表。我如何获得价值
"Text comes here and here...".
谢谢。