是否有可能告诉qTip 2.0使用除'title'之外的其他属性作为默认值?

时间:2011-10-12 19:40:48

标签: javascript jquery qtip

如何告诉qTip使用除'title'之外的其他属性作为默认属性?

我需要使用另一个属性的原因是因为当我禁用qtip并动态添加带有“title”的元素时,标题将显示当我将鼠标悬停在元素上时。我不想发生这种情况。

由于

1 个答案:

答案 0 :(得分:0)

在我们的项目中,我们还使用qTip并强制它使用子项的内容而不是Title属性。默认情况下隐藏子内容(CSS - > display:none;)

$('.tipped').each(function()
{
    $elem = $(this);
    $elem .qtip({
        content: $elem.children('.tiptext').html(),
        show: 'mouseover',
        hide: 'mouseout',
        position: {
            corner: {
                target: 'bottomMiddle',
                tooltip: 'topMiddle'
            }
        },
        style: {
            tip: true,
            name: 'blue',
            color: '#A04242',
            background: '#EEEEEE',
            border: {
                width: 1,
                radius: 3,
                color: '#4F81BD'
            }
        }
    });
});