我想使用 jsoup 获取所有那些带绿色下划线的信息。作为选择器,我想使用带有红色下划线的 div 类 hoverDiv 我使用的代码有点像下面:
doc = Jsoup.connect("http://www.mo").get();
links = doc.select("div.hoverDiv");
但它不起作用......那么选择器应该是什么?
您在问题中显示的 HTML 不是页面代码,而是页面加载后由 JavaScript 生成的代码。试试这种方式
Document doc = Jsoup.connect("http://www.movieplus.com/hollywood/upcoming/").get();
Elements elements = doc.select(".ListDetails .ListData");
for (Element el : elements) {
System.out.println(el.select("a[href]").first().attr("href"));
System.out.println(el.select("img[title]").first().attr("title"));
System.out.println(el.select(".mRate ,want").text());
System.out.println(el.select(".relDate").text());
System.out.println("----------");
}