我有以下问题。我想用jsoup解析一个html页面。解析不是问题,但我需要在不使用id或类的情况下获取div中的文本。 div元素中有一个自定义属性。
<div id="test" custom="tester">Get this text </div>
我尝试了以下内容:
Element bedrijfwrapper = document.select("custom[name="tester"].first();
但我不能让它发挥作用。有人可以帮助我吗?
答案 0 :(得分:1)
你应该试试这个:
document.select('[custom="tester"]').first();
祝你好运。
答案 1 :(得分:0)
这可能有效:
doc.select("div[custom=tester]")