<table>
<tr>
<td>hello</td>
<td><img src="xyz.png" width="100" height="100"></td>
</tr>
</table>
tabledata.rows.each do |row|
row.cells.each do |cell|
puts cell.text
end
end
puts "end"
获取输出 - &gt;
hello
end
我应该怎么做这样的输出 - &gt;
hello
xyz.png
end
不使用Nokogiri。
答案 0 :(得分:7)
获取属性
您可以使用Element#attribute_value
方法获取元素的属性。例如,
element.attribute_value('attribute')
对于许多标准属性,您也可以这样做:
element.attribute
输出单元格文字或图片文字
假设某个单元格有文字或图像:
这看起来像是:
tabledata.rows.each do |row|
row.cells.each do |cell|
if cell.image.exists?
puts cell.image.src #or cell.image.attribute_value('src')
else
puts cell.text
end
end
end
puts "end"