如何在Nokogiri中获取节点的值



我有这个

1.9.3-p286 :073 > doc.css("tr[class~=strong]").children[3].children
 => [#<Nokogiri::XML::Element:0x3fee5e077e98 name="a" attributes=[#
      <Nokogiri::XML::Attr:0x3fee5e077dd0 name="href" 
      value="http://somelink">]>] 

示例网页:

<tr class='strong bf highbeam'>
  <td>December 6th</td>
  <td>Foo</td>
  <td><a href='http://somelink' title='bar'>December 6th 2012 Episode</a></td>
  <td><a href='http://somelink/#disqus_thread'></a></td>
</tr>

此时如何获取http://somelink的值?

不要使用 children ,优化你的 css 选择器,直到你得到你想要的元素:

doc.at('tr.strong a')[:href]

相关内容

  • 没有找到相关文章

最新更新