是否可以从属性 data-x 中显示 qtip2 html 内容?
jquery-这段代码在属性data-x中对html不起作用
$('.icon[data-x]').qtip({
content: {
attr: 'data-x'
},
position: {
my: 'bottom center',
at: 'top center'
}
});
html
<span class="icon" href="#" data-x="<strong>HTML</strong><br>content"></span>