首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

运用Nokogiri获取页面Keywords

2013-08-22 
使用Nokogiri获取页面Keywordsrequire rubygemsrequire nokogiridoc Nokogiri::HTML(htmlheadm

使用Nokogiri获取页面Keywords

require 'rubygems'require 'nokogiri'doc =Nokogiri::HTML("<html><head><meta name="Keywords" content="one, two, three"></head><body></body></html>")doc.xpath("//meta[@name='Keywords']/@content").each do|attr|  puts attr.valueend

热点排行