qTip2。我无法添加“位置”代码

时间:2014-01-26 12:00:10

标签: javascript syntax qtip2

我对javascript一无所知。有人可以解释一下这段代码有什么问题吗(这是语法错误)?

$(document).ready(function () {
$('.picture').qtip(
{
    content: {
             text: $(this).next('.tooltiptext')
             }
    position: {
            my: 'bottom center',  // tooltips tip at bottom center...
            at: 'top center', // in relation to the button's top center...
            target: $('.picture') // my target
              }
 });
}); 

非常感谢。

1 个答案:

答案 0 :(得分:0)

我认为你在qtip的属性值之间缺少,

尝试:

$(document).ready(function () {
    $('.picture').qtip({
        content: {
            text: $(this).next('.tooltiptext')
        }, // <-- here
        position: {
            my: 'bottom center', // tooltips tip at bottom center...
            at: 'top center', // in relation to the button's top center...
            target: $('.picture') // my target
        }
    });
});