我有以下html部分:
<div class="share-btn print-btn">
<a href="etc" target="print_169471" rel="nofollow" class="bottom_tooltip empty" title="Print the article"><i class="print"></i></a>
</div>
我想从中提取href attr下的链接。 我尝试使用我的代码:
Document mainDoc = Jsoup.connect("http://main-html").get();
Elements newsHeadlines = mainDoc.select(".share-btn print-btn");
String printLink = newsHeadlines.attr("href");
System.out.println(printLink);
其中main-html包含我上面展示的部分,但它不起作用。我想问题出在“.share-btn print-btn”上;也许Jsoup只选择第一个字符串,这是不可行的;所以我需要选择两个字符串才能获得“href”标签下的链接。