3

我正在尝试放置图像,例如当我单击图像以进入 for_rent_index_path (视图中的女巫)时,例如我有这个:

 `<%= link_to "For rent", forrent_index_path %><br/>`

并且有效,但没有图像。我想删除它并放置带有标签的图像

我该怎么做?

4

3 回答 3

4

您只需要使用图像标签作为链接中的第一个参数。

 <%= link_to (image_tag "image.jpg"), forrent_index_path %><br/>
于 2012-10-11T16:06:53.677 回答
3
<%= link_to(image_tag("image.jpg", :alt => "image", :width => 50, :height => 50, :title => "Click here") forrent_index_path) %>
于 2012-10-11T16:07:26.080 回答
1

试试这个

link_to image_tag('/images/image.png') + "some text", url_for({:controller => 'controller_name', :action => 'action_name'}), :class => 'some class', :remote => true %>
于 2012-10-11T16:11:22.773 回答