我可以在twitter-bootstrap popover数据内容中使用html标签吗?

时间:2011-12-13 18:31:29

标签: javascript ruby-on-rails twitter-bootstrap

我在Rails 3.1.3应用程序中使用Twitter-Bootstrap。我有许多元素与popovers:

<a data-original-title="Quality" rel="popover" data-content="Did they do a good job?  5 for Really Nice, 4 for Good Enough, 3 for Average, 2 for Somewhat OK, 1 for Really Bad">Q</a>

我想在内容部分中有一个类似于:

的有序列表
<OL reversed="reversed">
  <LI> for Really Nice </LI>
  <LI> for Good Enough </LI>
  ...
</OL>

有没有一种简单的方法可以在不修改JavaScript的情况下执行此操作?无论我尝试什么,html代码都会显示在浏览器上,而不是被解释为这样。

更新

根据David的建议使用以下代码

link_to 'Q', '#', options: { data-original-title: "Quality", rel: 'popover', data-content: "Did they do a good job? <ol><li> for Really Nice </li><li>...</li></ol>".html_safe }

使用我的设置生成语法错误。我认为这解释了原因:Ruby 1.9 hash with a dash in a key。所以我正在使用:

<%= link_to 'Q', '#', options: { :"data-original-title" => "Quality", :rel => 'popover', :"data-content" => "Did they do a good job? <ol><li> for Really Nice </li></ol>".html_safe } %>

这不起作用。它生成以下HTML:

<a href="#" options="{:&quot;data-original-title&quot;=&gt;&quot;Quality&quot;, :rel=&gt;&quot;popover&quot;, :&quot;data-content&quot;=&gt;&quot;Did they do a good job? &lt;ol&gt;&lt;li&gt; for Really Nice &lt;/li&gt;&lt;/ol&gt;&quot;}">Q</a>

2 个答案:

答案 0 :(得分:89)

您需要创建一个启用了html选项的弹出框实例(在弹出的JS代码之后将其放在您的javascript文件中):

$('.popover-with-html').popover({ html : true });

然后链接语法为:

<%= link_to('Q', '#', :class => "popover-with-html", :title => "Quality", "data-content" => "#{some_content_object.html_safe}") %>

如果您正在动态生成内容,那么您需要像David建议的那样使用html_safe,这样Rails就不会逃避HTML代码。否则,您只需将HTML直接放在该内容属性中即可。

答案 1 :(得分:0)

是的,你可以这样做,但你需要在字符串上调用html_safe(如果字符串是由Rails生成的)

link_to 'Q', '#', :title => "Quality", :rel => 'popover', "data-content" => "Did they do a good job? <ol><li> for Really Nice </li><li>...</li></ol>".html_safe }