我有一些按钮基本上用CSS覆盖<li>
。我想将整个<li>
链接链接到Rails操作。
所以我不想这样做:
<li><%= link_to choice, { :action => "update", :id => @id, :response => index }, :remote => true %></li>
我想做这样的事情:
<%= link_to <li>choice</li>, { :action => "update", :id => @id, :response => index }, :remote => true %>
答案 0 :(得分:8)
使用块
<%= link_to {...} do %>
<li>choice</li>
<% end %>
请注意,rails 3.x使用<%=
,但rails 2.x使用<%
答案 1 :(得分:3)
使用html_safe
<%= link_to "<li>choice</li>".html_safe, { :action => "update", :id => @id, :response => index }, :remote => true %>