0

我尝试过类似的东西:

 <%= link_to_unless_current t('.en'), :locale => 'en', :rel => "tooltip", :title => "one title"%>

我正在使用 twitter bootstrap ,我需要使用twitter bootstrap tooltip

但它不起作用。

谢谢!

4

3 回答 3

1

您可以使用 jQuery 工具提示来获得更性感的视图:http: //craigsworks.com/projects/qtip/

于 2013-02-20T21:21:39.383 回答
0

根据doc page,格式应为:

link_to_unless_current(name, options = {}, html_options = {}, &block)

你有没有尝试过:

<%= link_to_unless_current t('.en', locale: 'en'), {}, { rel: "tooltip", title: "one title" } %>
于 2013-02-21T03:05:49.557 回答
0

这段代码对我有用:

<%= link_to_unless_current  t('.en'), {:locale => 'en'}, { rel: "tooltip", title: "one title" } %>

问候!

于 2013-02-21T09:46:03.057 回答