有没有办法在bootstrap Tooltip中支持HTML标签代码?

时间:2017-04-07 18:54:05

标签: jquery html css twitter-bootstrap twitter-bootstrap-tooltip

最近,当我尝试在title属性中添加一些html代码时,我遇到了Bootstrap 3 Tooltip的问题。它向我展示了简单的html标签代码。

这是问题

enter image description here

2 个答案:

答案 0 :(得分:3)

要在工具提示中获取html格式化结果,您必须在初始化引导工具提示时使用 html:true

实施例: $(' [data-toggle =" tooltip"]')。tooltip({html:true});

答案 1 :(得分:2)

是的。根据您的使用方式,您必须将html选项指定为trueRead the docs here.