有什么方法可以支持 bootstrap 工具提示中的 HTML 标签代码吗?
Is there any way to support HTML tags code inside bootstrap Tooltip?
最近,当我尝试在 title 属性中添加一些 html 代码时,我遇到了 Bootstrap 3 工具提示的问题。它向我展示了纯 html 标签代码。
问题来了
是的。根据您的使用方式,您必须将 html
选项指定为 true
。 Read the docs here.
要在工具提示上获得 html 格式的结果,您必须在初始化 bootstrap 工具提示时使用 html: true
示例:
$('[data-toggle="tooltip"]').tooltip({ html: true });
最近,当我尝试在 title 属性中添加一些 html 代码时,我遇到了 Bootstrap 3 工具提示的问题。它向我展示了纯 html 标签代码。
问题来了
是的。根据您的使用方式,您必须将 html
选项指定为 true
。 Read the docs here.
要在工具提示上获得 html 格式的结果,您必须在初始化 bootstrap 工具提示时使用 html: true
示例: $('[data-toggle="tooltip"]').tooltip({ html: true });