qTip2 - 向我的工具提示添加标题栏?

qTip2 - Add a titlebar to my tooltip?

我想为我的 qTip2 工具提示添加一个标题。目前我有这个代码:

<script>
    $(document).ready(function () {
        $('[title]').qtip({
        style: { classes: 'qtip-dark'}    
    });
});
</script>

<div title="TITLE">TEXT</div>

这给了我一个带有简单工具提示的文本 (http://beta.summonersindex.com/test.html). I just do not get managed to add a title, as it is shown on the demo page: http://qtip2.com/demos ('Add a title')。 我为此搜索了很多解决方案,但它们要么已过时,要么不适合我。我希望你们能帮助我!谢谢:)

你可以这样做:

JS

$(document).ready(function () {
    $('.someText').qtip({
        style: { classes: 'qtip-dark'},
        content: {
            text: 'Your text here',
            title: 'Your title here'
        }

    });
});

HTML

<div class="someText">TEXT</div>