JSOUP:如何获得 Href?
我有这个HTML代码:
<td class="topic starter"><a href="http://www.test.com">Title</a></td>
我想提取“标题”和URL,所以我做了这个:
Elements titleUrl = doc.getElementsByAttributeValue("class", "topic starter");
String title = titleUrl.text();
这适用于标题,但对于URL,我尝试了以下内容:
String url = titleUrl.html();
String url = titleUrl.attr("a [href]");
String url = titleUrl.attr("a[href]");
String url = titleUrl.attr("href");
String url = titleUrl.attr("a");
但是没有人工作,我无法获得URL。