1

我知道在 Jsoup 中,当你想找到某个带有链接的元素时,你可以这样做:

Document doc = Jsoup.parse(text); 
Element links = doc.select("[href]"); 

但是,这会将所有链接带到页面中的每个网站...

但是如果我有多个链接,我只想检索那些专门链接到谷歌的链接。例如:

<a href="http://www.google.com">Google</a>
<a href="http://www.bing.com">Bing</a>
<a href="http://www.google.com">Another Google</a> 

我希望它只接受那些有谷歌的人。我试着做这样的事情:

Element links = doc.select("[href=\"http://www.google.com\"]"); 

但这不起作用......有人有建议吗?

4

1 回答 1

3

你有没有简单地尝试过:

Element links = doc.select("[href=http://www.google.com]"); 
//Or,
Element links = doc.select("a[href=http://www.google.com]");

//Or with the 'attribute contains' form, the most likely to work:
Element links = doc.select("a[href*=google]");
于 2012-04-04T10:36:52.580 回答