从 Div 标签获取文本
我有一个主 Div 标签,其中包含多个 div 标签,如下所示。子 Div 标签没有与其他子 div 标签区分开的 class/id。现在我想从第二个子 Div 标签中提取文本值。我怎样才能做到这一点?
<div class="logFor" style="position: relative; height: 101px; padding: 5px;">
<div style="color: #6b6b6b; font-weight: bold;">This is a monster</div>
<div style="overflow: hidden; height: 28px; margin-top: 3px; color: #1b1f2e;">Monster in Black</div>
<div style="position: absolute; left: 5px; bottom: 0;">
<div style="position: absolute; right: 5px; bottom: 0;">
</div>
我想获取文本“黑衣怪物”。这个 Div 没有 id/name,不确定这个样式是否相同或改变。我如何使用 jSoup 提取?
I have a main Div tag with multiple div tags as below. The child Div tags have no class/id that distinguishes from the other child div tags. Now I want to extract the text value from the 2nd child Div tag. How can i do that?
<div class="logFor" style="position: relative; height: 101px; padding: 5px;">
<div style="color: #6b6b6b; font-weight: bold;">This is a monster</div>
<div style="overflow: hidden; height: 28px; margin-top: 3px; color: #1b1f2e;">Monster in Black</div>
<div style="position: absolute; left: 5px; bottom: 0;">
<div style="position: absolute; right: 5px; bottom: 0;">
</div>
I want to get the text "Monster in Black". This Div doesnt have an id/name and not sure if this style would be same or change. How would i extract using jSoup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用以下代码实现这一点:
另请查看此 javadoc 了解详细信息关于选择器
You can achieve that with following code:
Also check out this javadoc for details about Selector
生产:
Produces:
使用jquery
use jquery