1
如何在link_to內嵌入額外的HTML內容?在link_to內嵌入額外的HTML內容
這是我想要的結果:
<a href="/exercies/show/1"><i class="icon-show"></i>Show</a>
這裏是我的link_to調用
<%= link_to "Show", exercise_path(exercise) %>
如何在link_to內嵌入額外的HTML內容?在link_to內嵌入額外的HTML內容
這是我想要的結果:
<a href="/exercies/show/1"><i class="icon-show"></i>Show</a>
這裏是我的link_to調用
<%= link_to "Show", exercise_path(exercise) %>
<%= link_to '<i class="icon-search"></i> Show'.html_safe, exercise_path(exercise), :class => 'btn btn-small' %>
.html_safe是必需的,它沒能逃過。
,如果你把它包裝在一個DO塊
<%= link_to exercise_path(exercise) do %> <i class="icon-search"></i> Show <% end %>
我這只是在今天早些時候回答這是清潔劑!看看這個: http://stackoverflow.com/questions/9401942/using-link-to-with-embedded-html – Veraticus 2012-02-22 21:27:18