这是一个帮助您的示例,关于如何提取 href 属性:
require 'nokogiri'
doc = Nokogiri::HTML.parse <<-eot
<a name="html" href = "http://foo">HTML Tutorial</a><br>
<a name="css" href = "http://fooz">CSS Tutorial</a><br>
<a name="xml" href = "http://fiz">XML Tutorial</a><br>
<a href="/js/">JavaScript Tutorial</a>
eot
doc.search("//a").class # => Nokogiri::XML::NodeSet
doc.search("//a").each {|nd| puts nd['href'] }
doc.search("//a").map(&:class)
# => [Nokogiri::XML::Element, Nokogiri::XML::Element, Nokogiri::XML::Element,
# Nokogiri::XML::Element]
输出 :
http://foo
http://fooz>CSS Tutorial</a><br>
<a name=
/js/
基本上doc.search("//a")
会给你节点集,它只不过是Nokogiri::XML::Node
(s)的集合。你可以使用 then 方法Nokogiri::XML::Node#[]
来获取任何特定节点的属性值。Nokogiri 将属性/值对保存为哈希。往下看 :
require 'nokogiri'
doc = Nokogiri::HTML.parse <<-eot
<a target="_blank" class="tryitbtn" href="tryit.asp?filename=try_methods">Try it yourself »</a>
eot
doc.at('a').keys
# => ["target", "class", "href"]
doc.at('a').values
# => ["_blank", "tryitbtn", "tryit.asp?filename=try_methods"]
doc.at('a')['target'] # => "_blank"
doc.at('a')['class'] # => "tryitbtn"