2
可能重複:
Best way to use Twitter Bootstrap Icons as Links in Ruby on Rails 3?如何使用twitter引導程序圖標而不是鏈接?
我有下面的代碼刪除一個項目:
<%= link_to "delete", sense, :method => :delete,
:confirm => "You sure?" %>
如何重視:法:確認所使用的icon-remove
在推進。我想要的東西是這樣的:
<%= link_to <i class="icon-search"></i>, sense, :method => :delete,
:confirm => "You sure?" %>
這樣做的正確方法是什麼?
感謝您的鏈接 – Zakoff