我正在尝试放置图像,例如当我单击图像以进入 for_rent_index_path (视图中的女巫)时,例如我有这个:
`<%= link_to "For rent", forrent_index_path %><br/>`
并且有效,但没有图像。我想删除它并放置带有标签的图像
我该怎么做?
我正在尝试放置图像,例如当我单击图像以进入 for_rent_index_path (视图中的女巫)时,例如我有这个:
`<%= link_to "For rent", forrent_index_path %><br/>`
并且有效,但没有图像。我想删除它并放置带有标签的图像
我该怎么做?
您只需要使用图像标签作为链接中的第一个参数。
<%= link_to (image_tag "image.jpg"), forrent_index_path %><br/>
<%= link_to(image_tag("image.jpg", :alt => "image", :width => 50, :height => 50, :title => "Click here") forrent_index_path) %>
试试这个
link_to image_tag('/images/image.png') + "some text", url_for({:controller => 'controller_name', :action => 'action_name'}), :class => 'some class', :remote => true %>