通过jSoup从Div标签获取属性值
我有一个 Div 标签,如下所示
<div id="eventTTL" style="text-transform: uppercase; font-weight: 900;" eventTTL="4583476000">5 days 07:14:41</div>
如何获取 eventTTL 的值?我想显示 eventTTL 的值,即:)“4583476000”。
I have a Div tag as below
<div id="eventTTL" style="text-transform: uppercase; font-weight: 900;" eventTTL="4583476000">5 days 07:14:41</div>
How do i get the value of eventTTL? I want to display the value of eventTTL ie:) "4583476000".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更多信息请访问:https://jsoup.org/cookbook/extracting-data/attributes -文本-html
More info at: https://jsoup.org/cookbook/extracting-data/attributes-text-html
如果您的 DIV 没有 Id:
In case if your DIV has no Id: