link_to image_tag with inner text or html in rails

后端 未结 9 1546
生来不讨喜
生来不讨喜 2020-12-02 16:59

I want to output the following with Ruby on Rails link_to and image_tag methods:

Lorem Ipsum 

        
9条回答
  •  -上瘾入骨i
    2020-12-02 17:30

    Here's a cool way to use a link_to to include an image, and a mailto href with Text (displayed next to the image):

    <%= link_to image_tag("image.png") + " some@email.com", 
                             href: "mailto:some@email.com" %>
    

    Giving you something like this in your view (the entire image and text become an mailto href):

    hyperlinked image and text with mailto

提交回复
热议问题