bootstrap 工具提示中的图标

Icons in bootstrap tooltip

有人知道是否可以在 bootstrap 的工具提示中添加图标吗? 我在 bootstrap 工具提示上找到的唯一信息是如何自定义其颜色或如何使用 animate.css 在其上添加一些动画 可以这样做吗?

嘿,这很容易做到。您需要将以下属性添加到包含工具提示的元素。第一个数据-html="true"。完成后,您将能够将 HTML 插入 title=""。那应该为您提供所需的东西。这是一个 codepen 示例。在我的示例中,我将工具提示保留为静态,以便您可以看到它。 <button type="button" data-toggle="tooltip" data-html="true" data-trigger="manual" data-placement="right" title="<button>Facebook</button>" class="btn btn-default" id="example">example</button>