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

is it possible to add class inside a tag of title attribute(data-html= "true") Bootstrap 4 Tooltip?

这是一个正常的 bootstrap 工具提示 data-html="true"。我想在 ul 中声明一个 class tag like ul class="x" of title attribute.this 是正常代码

<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>">

问题出在标题标签 的反逗号 上。标题属性似乎在 class=[=33= 之后 关闭] 声明。我怎么能去掉这个?

单引号

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

数字字符参考 &#34;

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

Fiddle: http://jsfiddle.net/aq9Laaew/80571/