私はこれを試しています:
<%= 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>