可能重複:
Get link and href text from html doc with Nokogiri & Ruby?如何訪問鏈接的「href」參數?
我得到以下引入nokogiri輸出:
obj = [#<Nokogiri::XML::Element:0x19b1418 name="a" attributes=[#<Nokogiri::XML::Attr:0x123dd44 name="href" value="http://sample.com">] children=[#<Nokogiri::XML::Element:0x123c408 name="span" attributes=[#<Nokogiri::XML::Attr:0x1201f24 name="class" value="highlight">] children=[#<Nokogiri::XML::Text:0x1143b64 "Web">]>, #<Nokogiri::XML::Text:0x113a9c4 "Sample Text">]>]
我怎樣才能獲得價值"http://sample.com"
?我試過obj.attributes("value")
但沒有運氣。
我很感激任何幫助。
我使用:
- 軌3.2.x中
- 引入nokogiri
您需要提供示例HTML並顯示您編寫的創建'obj'的代碼。 –