Tooltipster html内容

时间:2015-06-26 22:13:08

标签: javascript jquery html tooltipster

我不知道是什么原因但在tooltipster中html内容不会显示。我编码了html,在脚本中添加了选项,但仍然是一个字符串。

$(document).ready(function() {
  $('.tooltip').tooltipster({
    contentAsHTML: true,
    interactive: true,
  });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://iamceege.github.io/tooltipster/js/jquery.tooltipster.js"></script>
<link rel="stylesheet" href="http://iamceege.github.io/tooltipster/css/tooltipster.css">
<span title="&amp;lt;img src=&amp;quot;my-image.png&amp;quot; /&amp;gt; &amp;lt;strong&amp;gt; This text is in bold case !&amp;lt;/strong&amp;gt;" class="tooltip">Why is this not working</span>

1 个答案:

答案 0 :(得分:4)

您的title属性包含许多&amp;个实例,其中应该只有&

例如,您有:

&amp;lt;img src=&amp;quot;my-image.png&amp;quot; /&amp;gt;

应该是:

&lt;img src=&quot;my-image.png&quot; /&gt;

我不确定你是如何生成title属性的,看起来你可能已经将字符串转义了两次。

工作片段:

$(document).ready(function() {
  $('.tooltip').tooltipster({
    contentAsHTML: true,
    interactive: true,
  });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://iamceege.github.io/tooltipster/js/jquery.tooltipster.js"></script>
<link rel="stylesheet" href="http://iamceege.github.io/tooltipster/css/tooltipster.css">
<span class="tooltip" title="&lt;img src=&quot;my-image.png&quot; /&gt; &lt;strong&gt; This text is in bold case !&lt;/strong&gt;">This is working</span>