HTML code inside buttons with simple_form

前端 未结 5 1310
情深已故
情深已故 2020-12-09 14:54

I\'m new to rails, and just found the simple_form gem. I installed it with bootstrap suport, but now I can\'t get this code to work the way I want it

<%=          


        
5条回答
  •  我在风中等你
    2020-12-09 15:27

    Don't use content_tag. The following works:

      <%= button_tag(type: 'submit', class: "btn btn-primary") do %>
         Save
      <% end %>
    

提交回复
热议问题