0

我是 ruby​​ 新手,我正在尝试使用 rails 3.2.15 在链接中插入一个很棒的字体图标

这是我的代码

<%= link_to tweet_path(tweet), method => :delete, :confirm => 'Are you sure?' do %>
    <i class="icon-trash"></i>
<% end %>

<%= link_to edit_tweet_path(tweet) do %>
     <i class="icon-pencil"></i>
<% end %>

我不知道我做错了什么。

先感谢您。

4

2 回答 2

1

你可以这样做:

<%= link_to raw('<i class="icon-trash"></i>'), tweet_path(tweet), method => :delete, :confirm => 'Are you sure?' %>
于 2013-11-12T17:19:53.320 回答
1

你可以这样做:

<%= link_to content_tag(:i,nil, :class => "icon-trash"), tweet_path(tweet), method => :delete, :confirm => 'Are you sure?' %>

<%= link_to content_tag(:i,nil, :class => "icon-pencil"), edit_tweet_path(tweet) %>

希望这对你有帮助

于 2013-11-15T01:49:48.723 回答