如何从这个 html 页面的 div 类中获取特定标签?
我正在尝试从此 html 页面 检索图像
网址图像位于网页上的版本框内。我将如何使用 JSoup 选择器方法获取它。
例如
Document doc = Jsoup.connect(url).get();
Element png = doc.select(//What would the tag be?);
我知道如何设置它,但不知道如何检索标签。
I am trying to retrieve the image url in from this html page
The image is inside of the editions box on the webpage. How would i go about getting it using the JSoup selector method.
Such as
Document doc = Jsoup.connect(url).get();
Element png = doc.select(//What would the tag be?);
I have an idea of how to set it up, just not how to retrieve the tag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
doc.select("div.box-art").select("img").attr("abs:src"));
doc.select("div.box-art").select("img").attr("abs:src"));
从 docs 看起来像 doc.select(".box-art img" )应该可以解决问题。 (选择一个 img 元素,它是类 box-art 元素的子元素。)请注意,这可能会为您提供多个 imgs(如果 JSoup 支持)。
From the docs it looks like doc.select(".box-art img") should do the trick. (Select an img element which is the child of an element of class box-art.) Note that this could get you multiple imgs, (if JSoup supports that).