如何在jsoup中搜索指定属性不存在的元素?
我需要找到我指定的属性不存在的元素。像这样的东西:
Doc.select( "some_tag[attribute=""]" );
或类似的东西:
Doc.select( "some_tag[!attribute]" );
据我所知,jsoup本身不支持xpath,所以这是不可能的。
也许有一些技巧可以实现这一点?
I need to find element where attribute specified by me doesn't exist. Something like:
Doc.select( "some_tag[attribute=""]" );
or something similar to that like:
Doc.select( "some_tag[!attribute]" );
As I know natively jsoup doesn't support xpath, so it is out of the question.
Maybe there is some trick to accomplish that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决此问题的一种方法是使用
:not
选择器。下面是选择所有没有id
的div
的示例。One way to solve this is using the
:not
selector. Below is an example of selecting alldivs
without anid
.