我有一张这样的桌子:
<table class=firstclass>
<tr>
<td><a href....></a></td>
</tr>
<tr>
<td><a href....></a></td>
</tr>
<tr>
<td><a href....></a></td>
</tr>
我在这个页面中有其他表格,所以我想我必须使用类似的东西:
doc.select("td.firstclass > a[href]");
但它不起作用。
我解决了这个问题:
Element table = doc.select("table.firstclass").first(); //gets a table with the class "first class"
Elements links = table.select("a[href]");
for (Element link : links) {
String textlink= link.text();
String urllink= link.attr("abs:href");
));
}
// ...