标签: html ruby-on-rails
让我们说我想在rails中输出这样的输出html:
<a role="menuitem" tabindex="-1" href="#">Action</a></li>
如何在rails中使用link_to helper指定attribues(role和tabIndex)。
答案 0 :(得分:4)
查看Rails docs for link_to
link_to 'Action', '#', role: 'menuitem', tabindex: -1
应该做的伎俩