我想在link_to
语句中传递一个div。这对我不起作用:
<%= link_to :controller => 'abouts', :action => 'index', :anchor => 'teacher-account' do %>
<div class="accordion-inner">
About Me
</div>
<%= end %>
答案 0 :(得分:1)
link_to
助手支持传递url
和html
的一些选项,例如:link_to(body, url_options = {}, html_options = {})
。
所以你可以试试这个:
link_to('About me', { controller: 'abouts', action: 'index' }, anchor: 'teacher-account', class: "accordion-inner")