Rails 3 - link_to with image_tag + text

后端 未结 4 1925
隐瞒了意图╮
隐瞒了意图╮ 2021-02-04 01:56
<%= link_to ((image_tag \'image.png\'), 
        url_for({:controller => \'controller_name\', :action => \'action_name\'}), 
            :class => \'quick\',         


        
4条回答
  •  时光取名叫无心
    2021-02-04 02:25

    A slightly sexier solution?

    <%= link_to image_tag("image.png", :alt => "Image Description", :class => "css"), root_path %>
    

提交回复
热议问题