所以我的link_to看起来像是:
<%= link_to compare_stage_path(stage, :access_key => client.authentication_token) %>
但我想让以下内容跨越链接到上述路径的链接:
<span class='edit-icon'> </span>
我该怎么做?
答案 0 :(得分:3)
如果我理解正确,您希望将span标记作为链接的锚元素的内容,对吧?在那种情况下......
<%= link_to "<span class='edit-icon'> </span>".html_safe,
compare_stage_path(stage, :access_key => client.authentication_token) %>