我对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
}
});
});
非常感谢。
答案 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
}
});
});