-1

使用nokogiri,

我想找到<p class="main"> Some text here...</p>

从一个 html 文档,

然后输出如下位置或显示树的东西

html > body > div class = "body" > p class= "main "
4

1 回答 1

2
text="<html><body><div class='body'><p class='main'>some text here</p></div></body></html>"
doc = Nokogiri::HTML(text)
root = doc.root
node = doc.xpath('//p[@class="main"]').first
path = [node]
begin
  node = node.parent
  path.unshift node
end until node == root
path.map {|n| n.name}.join " > "

练习让您添加您想要的任何属性。

于 2009-09-28T11:40:41.640 回答