我想要显示带有图片标记的工具提示,我已经编写了如下代码,但我无法在鼠标悬停时获得工具提示...
代码:
<%= link_to_remote image_tag('../images/save_active.gif',:method => "post",:tooltip=>"Save", :border => 0), :url => {:controller => "ptcgeodatabase" } %>
答案 0 :(得分:1)
如果您不使用javascript工具提示,可以试试这个
<%= link_to image_tag('something.png'), '#', :title => "Save" %>
答案 1 :(得分:0)
除非您使用javascript库专门生成工具提示,否则您需要使用title
元素上的a
属性(为了便于阅读,我将其拆分为多行):
<%= link_to_remote image_tag('../images/save_active.gif',
:method => "post",
:border => 0),
:url => { :controller => "ptcgeodatabase" },
:html => { :title => "Save" } %>