按“名称”选择在 JSoup 中
我在网页 URL 中有多个 div,我必须解析这些 div,它们具有相同的类名,但名称不同,没有 id。
例如。
<div class="answer" style="display: block;" name="yyy" oldblock="block" jQuery1317140119108="11">
我
<div class="answer" style="display: block;" name="xxx" oldblock="block" jQuery1317140119108="11">
只想从其中一个 div 中选择数据并进行解析,即 (name="yyy") (div 内的内容是
链接,每个类都不同。I
'我在 Jsoup 网页中查找了选择器语法,但找不到解决这个问题的方法,你能帮我解决这个问题吗?或者如果我遗漏了什么,请告诉我?
I have multiple div's in a webpage URL that I have to parse which have the same class name but different names with no id's.
for eg.
<div class="answer" style="display: block;" name="yyy" oldblock="block" jQuery1317140119108="11">
and
<div class="answer" style="display: block;" name="xxx" oldblock="block" jQuery1317140119108="11">
I want to select data and parse from only one of the div's say namely (name="yyy") (the content inside the div's are <href>
links which differ for each class.
I've looked up the selector syntax in the Jsoup webpage but can't get a way to work around it. Can you please help me with this or let me know if I'm missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
[attributename=attributevalue]
选择器。Use the
[attributename=attributevalue]
selector.