更改Qtip的内容

时间:2013-09-10 22:31:54

标签: jquery qtip qtip2

我已经阅读了api文档和论坛,并且在最初设置后尝试更改工具提示的内容,但它无法正常工作。我做错了什么?

HTML:

<p id="666">tooltip</p>

JQUERY

var qconfig = {
 show: 'mouseover',
 hide: { when: 'mouseout', fixed: true },
 position: { my: 'bottom center', at: 'top center', adjust: {y: 8} },
 style: { classes: 'qtip-light qtip-shadow' }
};

$("#666").qtip($.extend(true, qconfig, { content: { text: "before", title: "title is here" }}));
$("#666").qtip('option', 'content.text', 'after');
$("#666").qtip('api').set('content.text', 'another after');[/code]

我希望工具提示的内容是“之后”或“之后的另一个”,但它仍然是“之前”。请帮助。

JSFiddle在这里:http://jsfiddle.net/Af64c/

1 个答案:

答案 0 :(得分:9)

您可以更改此内容

$('#666').data('qtip').options.content.text = 'after';

FIDDLE