在 DOM 文档中按属性查找元素

发布于 2024-11-19 15:50:30 字数 1469 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

数理化全能战士 2024-11-26 15:50:30

通过像 jOOX 这样的实用程序,您可以包装 DOM 文档并使用类似 jQuery 的 API 来实现你所需要的。您有多种选择:

  • 使用 XPath(当然,您可以直接使用标准 Java XPath API,而不是使用 jOOX)

    匹配 match = $(document).xpath("//element[@attrName='value']");
    
  • 使用 CSS 样式选择器

    匹配 match = $(document).find("element[attrName='value']");
    
  • 使用 jOOX API

    匹配 match = $(document).find("element").filter(attr("attrName", "value"));
    

返回的 org.joox.Match 对象可以以多种方式使用,例如用于迭代:

for (Element element : match.each()) {
  System.out.println($(element));
}

With a utility like jOOX, you can wrap your DOM document and use a jQuery-like API to achieve what you need. You have several options:

  • Using XPath (of course, instead of using jOOX, you could use the standard Java XPath API directly)

    Match match = $(document).xpath("//element[@attrName='value']");
    
  • Using CSS-style selectors

    Match match = $(document).find("element[attrName='value']");
    
  • Using the jOOX API

    Match match = $(document).find("element").filter(attr("attrName", "value"));
    

The returned org.joox.Match object can then be used in various ways, e.g. for iteration:

for (Element element : match.each()) {
  System.out.println($(element));
}
十年不长 2024-11-26 15:50:30

我不知道 Java 中的 XML/DOM 解析有哪些选项,也不知道您当前正在使用什么(如果有的话),但是,如果您有某种方法通过 CSS 选择器查找元素( js 框架中的常见功能),那么 CSS 属性选择器 将是去的方式 去。

Google 开启了 CSS 选择器的 Java 实现,也许会有所帮助。

I have no idea what the options are as far as the XML/DOM parsing in Java, and I don't know what (if anything) you're using currently, but, if you have some way of finding elements via CSS selectors (a common feature in js frameworks), then CSS attribute selectors would be the way to go.

Google turned this Java implementation of CSS selectors up, perhaps it'll help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文