我已经阅读了 api 文档和论坛,并试图在最初设置工具提示后更改它的内容,但是它不起作用。我究竟做错了什么?
HTML:
<p id="666">tooltip</p>
查询
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/