是否可以在title属性(data-html =“ true”)Bootstrap 4工具提示的标签内添加类?

时间:2018-07-10 17:20:42

标签: bootstrap-4 tooltip

这是带有data-html =“ true” 的常规引导工具提示。我想在ul标签内声明一个类,例如标题的 ul class =“ x” 属性。这是正常代码

<input type="text" class="form-control" id="fullname" data-toggle="tooltip" data-placement="right" data-html="true" title="<ul><li>At least 5 letters</li></ul>">

这是我想要的

<input type="text" class="form-control" id="fullname" data-toggle="tooltip" data-placement="right" data-html="true" title="<ul class="x"><li>At least 5 letters</li></ul>">

问题出在标题标签的倒置逗号中。title属性似乎在 class =“ x”声明后被关闭。如何摆脱这个吗?

1 个答案:

答案 0 :(得分:1)

单引号

title="<ul class='x'>...</ul>"

数字字符参考&#34;

title="<ul class=&#34;x&#34;>...<ul>"

提琴:http://jsfiddle.net/aq9Laaew/80571/