在我的Rails 4应用程序中,在我的视图中,我使用了很多link_to
个助手。
当我需要向链接添加Bootstrap tooltip
时,我会这样做:
<%= link_to "Link text", model_path(@model), "data-toggle" => "tooltip", "data-placement" => "bottom", "title" => "Model View" %>
而且,当我需要在链接中添加Bootstrap modal
时,我会这样做:
<%= link_to "Link text", model_path(@model), :remote => true, 'data-toggle' => "modal", 'data-target' => '#modal-window' %>
现在,在我的应用中的某个特定位置,我需要在同一个链接上添加 BOTH 一个tooltip
AND 一个modal
。
我找到了两个Stack Overflow问题here和there,它们解释了如何在Rails中添加多个data-toggle
属性,但没有一个提供实现此功能的解决方案 INSIDE 一个link_to
帮助者。
这实际上是可能的吗?
答案 0 :(得分:1)
我认为你不能这样做,但是你可以将你的链接包裹在<div>
或<span>
中并将工具提示放在那里。