我正在尝试使用 Rails 3 content_tag 方法复制此示例中的删除按钮图标,在嵌套表单中并使用 jQuery 不显眼(或者至少我希望如此)。
使用 Firebug 检查时生成的 html 如下。
<a class="btn btn-danger" href="#">
<i class="icon-trash icon-white"></i>
Delete
</a>
我正在使用以下内容生成带有图标的按钮,但无法向其中添加“删除成分”,也没有获得 href 的“#”。
这是我在部分成分中的代码:
<%= link_to content_tag(:a, content_tag(:i, '', class: "icon-trash icon-white"), class: "btn btn-danger remove_fields") %>
这会产生:
<a class="btn btn-danger remove_fields">
<i class=icon-trash icon-white"></i>
</a>
这是基于来自 Api 码头的信息 - content_tag
其中有以下代码示例:
content_tag(:div, content_tag(:p, "Hello world!"), :class => "strong")
# => <div class="strong"><p>Hello world!</p></div>
有人可以指出我正确的方向吗?为什么我错过了上面提到的细节?
注意我可以让它与一个 link_to 块一起工作,但想知道这是否可以在没有 do..end 的情况下在一行中完成,更重要的是在 content_for 方法中。
<%= link_to('#', class: "btn btn-danger remove_fields") do %>
<i class: "icon-trash icon-white"></i>
Delete
<% end %>