我正在尝试这个:
<%= link_to 'Test', '#', {title: "this is my images tooltop message", class: "tooltip"} %>
它返回以下 HTML:
<a href="#" class="tooltip">Test</a>
当我删除该class
属性时,我得到:
<a href="#" title="this is my images tooltop message">Test</a>
如何在锚标签中同时设置title
和class
以便获得以下内容?
<a href="#" title="this is my images tooltop message" class="tooltip">Test</a>