2

我想用富文本显示工具提示,如下所示

<%= link_to 'test', '#', :title => "<b>sample</b>".html_safe %>

它无法使用 html 标签显示。

想要在锚标题属性中显示没有 html 标记的 html 格式文本。

请分享你的想法。

4

1 回答 1

0

最终实现如下,通过使用 Jquery-ui 工具提示

`

<%= link_to 'test', '#', :title => "<b>sample</b>", :id => "demo_box" %>`

    $(function(){
      $('#demo_box').tooltip({
        content: function(){
          var element = $( this );
          return element.attr('title')
        }
      });
    });

`

于 2015-03-11T11:21:42.333 回答