<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"
获取输出 ->
hello
end
我应该怎么做这样的输出->
hello
xyz.png
end
不使用 Nokogiri。