获取 Hpricot 中元素的类型

发布于 2024-08-09 07:01:55 字数 234 浏览 4 评论 0原文

我想遍历元素的子元素并仅过滤文本或 span 元素,例如:

element.children.select {|child|
  child.class == String || child.element_type == 'span'
}

但我找不到方法来测试某个元素的类型。我该如何测试呢?我想知道是否有更好的方法来做我想做的事情,但我也很感谢对此的建议。

I want to go through the children of an element and filter only the ones that are text or span, something like:

element.children.select {|child|
  child.class == String || child.element_type == 'span'
}

but I can't find a way to test which type a certain element is. How do I test that? I'd like to know that regardless if there's a better way of doing what I'm trying to do, but I also appreciate suggestions on that.

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

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

发布评论

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

评论(1

星光不落少年眉 2024-08-16 07:01:55

找到了:

element.name
#=> "span"

Found it:

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