我需要从 Rails 脚本中的给定网站 URL 获取所有背景图像
我试过 Nokogiri:
doc = Nokogiri::HTML(open(url)) // url - will be any website
这是网站的 HTML 和 CSS:
<h1 class="logo">
<a href="/">Website Name</a>
</h1>
.logo {
width: 193px;
height: 73px;
float: left;
background: url(/themes/site_themes/tccc/images/logo.png) no-repeat;
}
我想要实现的是从外部文件中检索徽标背景图像 URL。我们可以使用 Nokogiri 检索内联样式,但我一直无法找到外部样式的解决方案。
我想使用任何 Web scraper从提供的网站获取所有背景图像。
我怎样才能做到这一点?