小编典典

我可以在Twitter Bootstrap的工具提示中使用复杂的HTML吗?

html

如果查看官方文档,我会看到一个名为HTML的属性:

Name    |    Type       |    default  |    Description
----------------------------------------------------------------------------
html    |    boolean    |    false    |    Insert html into the tooltip. 
                                           If false, jquery's text method 
                                           will be used to insert content 
                                           into the dom. Use text if you're 
                                           worried about XSS attacks.

它说:“将html插入工具提示中”,但类型为布尔值。如何在工具提示中使用复杂的html?


阅读 274

收藏
2020-05-10

共1个答案

小编典典

此参数与是否要在工具提示中使用复杂的html有关。将其设置为true,然后将html插入title标记的属性。

看到这个小提琴这里-我给自己定的HTML属性为true通过data-html="true"<a>标签,然后就在html特设添加作为一个例子。

2020-05-10