当前 2 个用户添加评论时,我在确认按钮上有此工具提示代码:
$("#confirm").tooltip({
content: function(){
$.ajax({
type: 'POST',
url: '/comments/numUsers.json',
data: {draw_id : $("#PostId").attr('value')},
dataType: 'json',
success: function(data){
onSuccess(data);
},
error: function(){
return false;
}
});
function onSuccess(data){
if (data < 2){
if(data == 0){
return "You're the first user";
}
else{
return "You're the second user";
}
}
else{
return false;
}
}
}
});
numUsers.json 返回已经对帖子发表评论的用户数。ajax调用工作广告“onSuccess”函数被正确调用,但我的按钮上没有显示工具提示:-(有什么建议吗?提前谢谢